Unicode Finder

"聦" U+8066(CJK UNIFIED IDEOGRAPH-8066)

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

Programming

C
\u8066
JavaScript
\u8066
Java
\u8066
Json
\u8066
Python
\u8066
Perl
\x{8066}
PHP
\x{8066}
Ruby
\u{8066}
Rust
\u{8066}
Go
\u8066

Web

CSS
\008066
HtmlDecimal
聦
HtmlHexadecimal
聦
Url
%E8%81%A6

Code

MD5
59fe35823f5f00c9cce0f6a8e346f7cb
Sha1
af728ca72b3f598926c5cf0b0f9df5e23a9dec7b
Base64
6IGm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8066';
console.log(char);  // Output: 聦

Java:

char c = '\u8066';
System.out.println(c);  // Output: 聦

JSON:

{"text": "\u8066"}  // Value: 聦

Python:

char = '\u8066'
print(char)  # Output: 聦

Perl:

my $char = "\x{8066}";
print $char;  # Output: 聦

PHP:

$char = "\x{8066}";
echo $char;  // Output: 聦

Ruby:

char = "\u{8066}"
puts char  # Output: 聦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008066";  /* Display: 聦 */
}

HTML Decimal:

<p>HTML decimal: &#32870;</p>  <!-- Display: 聦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8066;</p>  <!-- Display: 聦 -->

URL Encoding:

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

Encodings

MD5:

59fe35823f5f00c9cce0f6a8e346f7cb

SHA1:

af728ca72b3f598926c5cf0b0f9df5e23a9dec7b

Base64:

6IGm