Unicode Finder

"詓" U+8A53(CJK UNIFIED IDEOGRAPH-8A53)

U+8A53
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8A53

Programming

C
\u8A53
JavaScript
\u8A53
Java
\u8A53
Json
\u8A53
Python
\u8A53
Perl
\x{8A53}
PHP
\x{8A53}
Ruby
\u{8A53}
Rust
\u{8A53}
Go
\u8A53

Web

CSS
\008A53
HtmlDecimal
詓
HtmlHexadecimal
詓
Url
%E8%A9%93

Code

MD5
a7dade68821b6cfa15cdac2616782108
Sha1
ddfb778d0f817c0bd3d74f47b33a22e9cdfd3715
Base64
6KmT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8A53';
console.log(char);  // Output: 詓

Java:

char c = '\u8A53';
System.out.println(c);  // Output: 詓

JSON:

{"text": "\u8A53"}  // Value: 詓

Python:

char = '\u8A53'
print(char)  # Output: 詓

Perl:

my $char = "\x{8A53}";
print $char;  # Output: 詓

PHP:

$char = "\x{8A53}";
echo $char;  // Output: 詓

Ruby:

char = "\u{8A53}"
puts char  # Output: 詓

Rust:

let c = '\u{8A53}';
println!("{}", c);  // Output: 詓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008A53";  /* Display: 詓 */
}

HTML Decimal:

<p>HTML decimal: &#35411;</p>  <!-- Display: 詓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A53;</p>  <!-- Display: 詓 -->

URL Encoding:

// 詓 URL encoding
https://unicodefinder.com/search.php?query=%E8%A9%93

Encodings

MD5:

a7dade68821b6cfa15cdac2616782108

SHA1:

ddfb778d0f817c0bd3d74f47b33a22e9cdfd3715

Base64:

6KmT