Unicode Finder

"聇" U+8047(CJK UNIFIED IDEOGRAPH-8047)

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

Programming

C
\u8047
JavaScript
\u8047
Java
\u8047
Json
\u8047
Python
\u8047
Perl
\x{8047}
PHP
\x{8047}
Ruby
\u{8047}
Rust
\u{8047}
Go
\u8047

Web

CSS
\008047
HtmlDecimal
聇
HtmlHexadecimal
聇
Url
%E8%81%87

Code

MD5
5935eeffdd1e40978dad4ba75d2abed8
Sha1
069bcf4883275506a09f38a030c7a4e5bbb327c3
Base64
6IGH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8047';
console.log(char);  // Output: 聇

Java:

char c = '\u8047';
System.out.println(c);  // Output: 聇

JSON:

{"text": "\u8047"}  // Value: 聇

Python:

char = '\u8047'
print(char)  # Output: 聇

Perl:

my $char = "\x{8047}";
print $char;  # Output: 聇

PHP:

$char = "\x{8047}";
echo $char;  // Output: 聇

Ruby:

char = "\u{8047}"
puts char  # Output: 聇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008047";  /* Display: 聇 */
}

HTML Decimal:

<p>HTML decimal: &#32839;</p>  <!-- Display: 聇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8047;</p>  <!-- Display: 聇 -->

URL Encoding:

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

Encodings

MD5:

5935eeffdd1e40978dad4ba75d2abed8

SHA1:

069bcf4883275506a09f38a030c7a4e5bbb327c3

Base64:

6IGH