Unicode Finder

"聤" U+8064(CJK UNIFIED IDEOGRAPH-8064)

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

Programming

C
\u8064
JavaScript
\u8064
Java
\u8064
Json
\u8064
Python
\u8064
Perl
\x{8064}
PHP
\x{8064}
Ruby
\u{8064}
Rust
\u{8064}
Go
\u8064

Web

CSS
\008064
HtmlDecimal
聤
HtmlHexadecimal
聤
Url
%E8%81%A4

Code

MD5
ef4e53d87b913796fa1edb4317f1d8db
Sha1
b6516200fd8fc96a35d5b92d65b6550fbba55b74
Base64
6IGk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8064';
console.log(char);  // Output: 聤

Java:

char c = '\u8064';
System.out.println(c);  // Output: 聤

JSON:

{"text": "\u8064"}  // Value: 聤

Python:

char = '\u8064'
print(char)  # Output: 聤

Perl:

my $char = "\x{8064}";
print $char;  # Output: 聤

PHP:

$char = "\x{8064}";
echo $char;  // Output: 聤

Ruby:

char = "\u{8064}"
puts char  # Output: 聤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008064";  /* Display: 聤 */
}

HTML Decimal:

<p>HTML decimal: &#32868;</p>  <!-- Display: 聤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8064;</p>  <!-- Display: 聤 -->

URL Encoding:

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

Encodings

MD5:

ef4e53d87b913796fa1edb4317f1d8db

SHA1:

b6516200fd8fc96a35d5b92d65b6550fbba55b74

Base64:

6IGk