Unicode Finder

"꒫" U+A4AB(YI RADICAL ZOT)

U+A4AB
ブロック名
Yi Radicals
名前
YI RADICAL ZOT

Programming

C
\uA4AB
JavaScript
\uA4AB
Java
\uA4AB
Json
\uA4AB
Python
\uA4AB
Perl
\x{A4AB}
PHP
\x{A4AB}
Ruby
\u{A4AB}
Rust
\u{A4AB}
Go
\uA4AB

Web

CSS
\00A4AB
HtmlDecimal
꒫
HtmlHexadecimal
꒫
Url
%EA%92%AB

Code

MD5
57bcf5f484b384ff61d66f0d0ee11c36
Sha1
e1342a659646dba8af4025394f136abc3c76159a
Base64
6pKr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA4AB';
console.log(char);  // Output: ꒫

Java:

char c = '\uA4AB';
System.out.println(c);  // Output: ꒫

JSON:

{"text": "\uA4AB"}  // Value: ꒫

Python:

char = '\uA4AB'
print(char)  # Output: ꒫

Perl:

my $char = "\x{A4AB}";
print $char;  # Output: ꒫

PHP:

$char = "\x{A4AB}";
echo $char;  // Output: ꒫

Ruby:

char = "\u{A4AB}"
puts char  # Output: ꒫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42155;</p>  <!-- Display: ꒫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA4AB;</p>  <!-- Display: ꒫ -->

URL Encoding:

// ꒫ URL encoding
https://unicodefinder.com/search.php?query=%EA%92%AB

Encodings

MD5:

57bcf5f484b384ff61d66f0d0ee11c36

SHA1:

e1342a659646dba8af4025394f136abc3c76159a

Base64:

6pKr