Is it possible to display in a TextView a bottom aligned quotation mark like this?
Asked
Active
Viewed 157 times
-2

Shashanth
- 4,995
- 7
- 41
- 51

Ádám Rozinka
- 25
- 4
-
2You just need to choose the appropriate Unicode character, see e.g. [Unicode® Character Table - Quotation marks](https://unicode-table.com/en/sets/quotation-marks/). You can copy/paste them from there, if your source file is UTF-8, otherwise use a unicode escape, e.g. [`„`](https://www.fileformat.info/info/unicode/char/201e/index.htm) is `\u201E` (Java) or `„` (HTML). – Andreas Jan 12 '20 at 15:17
1 Answers
1
You can just type the correct character:
„
or
„
It's a character like all the other.

lugiorgi
- 473
- 1
- 4
- 12