Unicode Finder

"ꎫ" U+A3AB(YI SYLLABLE SHAT)

U+A3AB
ブロック名
Yi Syllables
名前
YI SYLLABLE SHAT

Programming

C
\uA3AB
JavaScript
\uA3AB
Java
\uA3AB
Json
\uA3AB
Python
\uA3AB
Perl
\x{A3AB}
PHP
\x{A3AB}
Ruby
\u{A3AB}
Rust
\u{A3AB}
Go
\uA3AB

Web

CSS
\00A3AB
HtmlDecimal
ꎫ
HtmlHexadecimal
ꎫ
Url
%EA%8E%AB

Code

MD5
50aa9813a4408a5fa15c3122a5ef2408
Sha1
65f74f4e1ba5bdd629e7bfcdfdc6d7de28ea0916
Base64
6o6r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA3AB';
console.log(char);  // Output: ꎫ

Java:

char c = '\uA3AB';
System.out.println(c);  // Output: ꎫ

JSON:

{"text": "\uA3AB"}  // Value: ꎫ

Python:

char = '\uA3AB'
print(char)  # Output: ꎫ

Perl:

my $char = "\x{A3AB}";
print $char;  # Output: ꎫ

PHP:

$char = "\x{A3AB}";
echo $char;  // Output: ꎫ

Ruby:

char = "\u{A3AB}"
puts char  # Output: ꎫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41899;</p>  <!-- Display: ꎫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA3AB;</p>  <!-- Display: ꎫ -->

URL Encoding:

// ꎫ URL encoding
https://unicodefinder.com/search.php?query=%EA%8E%AB

Encodings

MD5:

50aa9813a4408a5fa15c3122a5ef2408

SHA1:

65f74f4e1ba5bdd629e7bfcdfdc6d7de28ea0916

Base64:

6o6r