Unicode Finder

"聀" U+8040(CJK UNIFIED IDEOGRAPH-8040)

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

Programming

C
\u8040
JavaScript
\u8040
Java
\u8040
Json
\u8040
Python
\u8040
Perl
\x{8040}
PHP
\x{8040}
Ruby
\u{8040}
Rust
\u{8040}
Go
\u8040

Web

CSS
\008040
HtmlDecimal
聀
HtmlHexadecimal
聀
Url
%E8%81%80

Code

MD5
126252fca19d0b1d5fdcad07aee943da
Sha1
5637df50f9de857a081bd99fe6c6d46a85e74a89
Base64
6IGA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8040';
console.log(char);  // Output: 聀

Java:

char c = '\u8040';
System.out.println(c);  // Output: 聀

JSON:

{"text": "\u8040"}  // Value: 聀

Python:

char = '\u8040'
print(char)  # Output: 聀

Perl:

my $char = "\x{8040}";
print $char;  # Output: 聀

PHP:

$char = "\x{8040}";
echo $char;  // Output: 聀

Ruby:

char = "\u{8040}"
puts char  # Output: 聀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008040";  /* Display: 聀 */
}

HTML Decimal:

<p>HTML decimal: &#32832;</p>  <!-- Display: 聀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8040;</p>  <!-- Display: 聀 -->

URL Encoding:

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

Encodings

MD5:

126252fca19d0b1d5fdcad07aee943da

SHA1:

5637df50f9de857a081bd99fe6c6d46a85e74a89

Base64:

6IGA