| Symbol Name | Fullwidth Apostrophe |
| Unicode Version | 1.1 |
| Unicode | U+FF07 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \FF07 |
| Hex Code | 0xFF07 |
| HTML Code | ' |
| LaTeX | \text{FULLWIDTHAPOSTROPHE} |
| Symbol | ' |
| URL encode (UTF-8 percent) | %EF%BC%87 |
| Spoken / screen reader name | Fullwidth Apostrophe |
| UTF-8 | EF BC 87 |
| UTF-16 | FF07 |
| UTF-32 | 0000FF07 |
1\documentclass{article}2\usepackage{pifont}3\text{FULLWIDTHAPOSTROPHE}4\end{document}You can type the fullwidth apostrophe symbol on most modern devices with the help of following methods:
Alt + 65287 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "fullwidth apostrophe", or use Unicode Hex Input with FF07.
Ctrl + Shift + U, type ff07, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with bracket and quote support.
1span.fullwidth-apostrophe::before { content: "\FF07"; }1<span>'</span>Fullwidth Apostrophe symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uFF07' or String.fromCodePoint(65287) |
| Python | '\N{FULLWIDTH APOSTROPHE}' or chr(65287) |
| Rust | '\u{FF07}' |
| C / C++ | UTF-8 source or wchar_t with U+FF07 |
| Go | string(rune(0xFF07)) |
| Ruby | "\u{FF07}" |