| 記号名 | Latin Small Letter R Rotunda |
| Unicodeバージョン | 5.1 |
| Unicode | U+A75B |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \A75B |
| 16進コード | 0xA75B |
| HTMLコード | ꝛ |
| LaTeX | \text{LATINSMALLLETTERRROTUNDA} |
| 記号 | ꝛ |
| URLエンコード(UTF-8パーセント) | %EA%9D%9B |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter R Rotunda |
| UTF-8 | EA 9D 9B |
| UTF-16 | A75B |
| UTF-32 | 0000A75B |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERRROTUNDA}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter r rotunda記号を入力できます:
Alt + 42843 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter r rotunda", or use Unicode Hex Input with A75B.
Ctrl + Shift + U, type a75b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-r-rotunda::before { content: "\A75B"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꝛ</span>各プログラミング言語におけるLatin Small Letter R Rotunda記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uA75B' or String.fromCodePoint(42843) |
| Python | '\N{LATIN SMALL LETTER R ROTUNDA}' or chr(42843) |
| Rust | '\u{A75B}' |
| C / C++ | UTF-8 source or wchar_t with U+A75B |
| Go | string(rune(0xA75B)) |
| Ruby | "\u{A75B}" |