Unicode Finder

"ᷣ" U+1DE3(COMBINING LATIN SMALL LETTER R ROTUNDA)

U+1DE3
區塊名稱
Combining Diacritical Marks Supplement
名稱
COMBINING LATIN SMALL LETTER R ROTUNDA

Programming

C
\u1DE3
JavaScript
\u1DE3
Java
\u1DE3
Json
\u1DE3
Python
\u1DE3
Perl
\x{1DE3}
PHP
\x{1DE3}
Ruby
\u{1DE3}
Rust
\u{1DE3}
Go
\u1DE3

Web

CSS
\001DE3
HtmlDecimal
ᷣ
HtmlHexadecimal
ᷣ
Url
%E1%B7%A3

Code

MD5
6ab73db9c3faefcaddd876229739a308
Sha1
a376a8a661d8f093d0142e24683cd9de15ab35c6
Base64
4bej

使用範例

Programming Languages

C:

char c = '\u1DE3';
printf("%c\n", c);  // Output: ᷣ

JavaScript:

const char = '\u1DE3';
console.log(char);  // Output: ᷣ

Java:

char c = '\u1DE3';
System.out.println(c);  // Output: ᷣ

JSON:

{"text": "\u1DE3"}  // Value: ᷣ

Python:

char = '\u1DE3'
print(char)  # Output: ᷣ

Perl:

my $char = "\x{1DE3}";
print $char;  # Output: ᷣ

PHP:

$char = "\x{1DE3}";
echo $char;  // Output: ᷣ

Ruby:

char = "\u{1DE3}"
puts char  # Output: ᷣ

Rust:

let c = '\u{1DE3}';
println!("{}", c);  // Output: ᷣ

Go:

char := '\u1DE3'
fmt.Printf("%c\n", char)  // Output: ᷣ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DE3";  /* Display: ᷣ */
}

HTML Decimal:

<p>HTML decimal: &#7651;</p>  <!-- Display: ᷣ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DE3;</p>  <!-- Display: ᷣ -->

URL Encoding:

// ᷣ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%A3

Encodings

MD5:

6ab73db9c3faefcaddd876229739a308

SHA1:

a376a8a661d8f093d0142e24683cd9de15ab35c6

Base64:

4bej