Unicode Finder

"聓" U+8053(CJK UNIFIED IDEOGRAPH-8053)

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

Programming

C
\u8053
JavaScript
\u8053
Java
\u8053
Json
\u8053
Python
\u8053
Perl
\x{8053}
PHP
\x{8053}
Ruby
\u{8053}
Rust
\u{8053}
Go
\u8053

Web

CSS
\008053
HtmlDecimal
聓
HtmlHexadecimal
聓
Url
%E8%81%93

Code

MD5
5742daaa96bf7edb4bc81860d9ed4b71
Sha1
57d8e9ba349163b77eec4f7e9ead6b946cd14b95
Base64
6IGT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8053';
console.log(char);  // Output: 聓

Java:

char c = '\u8053';
System.out.println(c);  // Output: 聓

JSON:

{"text": "\u8053"}  // Value: 聓

Python:

char = '\u8053'
print(char)  # Output: 聓

Perl:

my $char = "\x{8053}";
print $char;  # Output: 聓

PHP:

$char = "\x{8053}";
echo $char;  // Output: 聓

Ruby:

char = "\u{8053}"
puts char  # Output: 聓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008053";  /* Display: 聓 */
}

HTML Decimal:

<p>HTML decimal: &#32851;</p>  <!-- Display: 聓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8053;</p>  <!-- Display: 聓 -->

URL Encoding:

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

Encodings

MD5:

5742daaa96bf7edb4bc81860d9ed4b71

SHA1:

57d8e9ba349163b77eec4f7e9ead6b946cd14b95

Base64:

6IGT