| Symbol Name | Right Corner Bracket |
| Unicode Version | 1.1 |
| Unicode | U+300D |
| Unicode block | |
| General category | Close Punctuation (Pe) |
| CSS Code | \300D |
| Hex Code | 0x300D |
| HTML Code | 」 |
| LaTeX | \text{RIGHTCORNERBRACKET} |
| Symbol | 」 |
| URL encode (UTF-8 percent) | %E3%80%8D |
| Spoken / screen reader name | Right Corner Bracket |
| UTF-8 | E3 80 8D |
| UTF-16 | 300D |
| UTF-32 | 0000300D |
1\documentclass{article}2\usepackage{pifont}3\text{RIGHTCORNERBRACKET}4\end{document}You can type the right corner bracket symbol on most modern devices with the help of following methods:
Alt + 12301 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right corner bracket", or use Unicode Hex Input with 300D.
Ctrl + Shift + U, type 300d, 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.right-corner-bracket::before { content: "\300D"; }1<span>」</span>Right Corner Bracket symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u300D' or String.fromCodePoint(12301) |
| Python | '\N{RIGHT CORNER BRACKET}' or chr(12301) |
| Rust | '\u{300D}' |
| C / C++ | UTF-8 source or wchar_t with U+300D |
| Go | string(rune(0x300D)) |
| Ruby | "\u{300D}" |