Unicode Finder

"ꐋ" U+A40B(YI SYLLABLE QOP)

U+A40B
ブロック名
Yi Syllables
名前
YI SYLLABLE QOP

Programming

C
\uA40B
JavaScript
\uA40B
Java
\uA40B
Json
\uA40B
Python
\uA40B
Perl
\x{A40B}
PHP
\x{A40B}
Ruby
\u{A40B}
Rust
\u{A40B}
Go
\uA40B

Web

CSS
\00A40B
HtmlDecimal
ꐋ
HtmlHexadecimal
ꐋ
Url
%EA%90%8B

Code

MD5
05366759142c7ea7da7c5f3123f17e5b
Sha1
4000395ee2d30b5185c8c77da09edbd704c42fed
Base64
6pCL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA40B';
console.log(char);  // Output: ꐋ

Java:

char c = '\uA40B';
System.out.println(c);  // Output: ꐋ

JSON:

{"text": "\uA40B"}  // Value: ꐋ

Python:

char = '\uA40B'
print(char)  # Output: ꐋ

Perl:

my $char = "\x{A40B}";
print $char;  # Output: ꐋ

PHP:

$char = "\x{A40B}";
echo $char;  // Output: ꐋ

Ruby:

char = "\u{A40B}"
puts char  # Output: ꐋ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41995;</p>  <!-- Display: ꐋ -->

HTML Hexadecimal:

<p>HTML hex: &#xA40B;</p>  <!-- Display: ꐋ -->

URL Encoding:

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

Encodings

MD5:

05366759142c7ea7da7c5f3123f17e5b

SHA1:

4000395ee2d30b5185c8c77da09edbd704c42fed

Base64:

6pCL