Unicode Finder

"ꐌ" U+A40C(YI SYLLABLE QUT)

U+A40C
ブロック名
Yi Syllables
名前
YI SYLLABLE QUT

Programming

C
\uA40C
JavaScript
\uA40C
Java
\uA40C
Json
\uA40C
Python
\uA40C
Perl
\x{A40C}
PHP
\x{A40C}
Ruby
\u{A40C}
Rust
\u{A40C}
Go
\uA40C

Web

CSS
\00A40C
HtmlDecimal
ꐌ
HtmlHexadecimal
ꐌ
Url
%EA%90%8C

Code

MD5
a987bd4592a6efab5c708ed43078972b
Sha1
5dd5f45139fb918de6fe4c44cc60a604e9914cfc
Base64
6pCM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA40C';
console.log(char);  // Output: ꐌ

Java:

char c = '\uA40C';
System.out.println(c);  // Output: ꐌ

JSON:

{"text": "\uA40C"}  // Value: ꐌ

Python:

char = '\uA40C'
print(char)  # Output: ꐌ

Perl:

my $char = "\x{A40C}";
print $char;  # Output: ꐌ

PHP:

$char = "\x{A40C}";
echo $char;  // Output: ꐌ

Ruby:

char = "\u{A40C}"
puts char  # Output: ꐌ

Rust:

let c = '\u{A40C}';
println!("{}", c);  // Output: ꐌ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00A40C";  /* Display: ꐌ */
}

HTML Decimal:

<p>HTML decimal: &#41996;</p>  <!-- Display: ꐌ -->

HTML Hexadecimal:

<p>HTML hex: &#xA40C;</p>  <!-- Display: ꐌ -->

URL Encoding:

// ꐌ URL encoding
https://unicodefinder.com/search.php?query=%EA%90%8C

Encodings

MD5:

a987bd4592a6efab5c708ed43078972b

SHA1:

5dd5f45139fb918de6fe4c44cc60a604e9914cfc

Base64:

6pCM