Unicode Finder

"聏" U+804F(CJK UNIFIED IDEOGRAPH-804F)

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

Programming

C
\u804F
JavaScript
\u804F
Java
\u804F
Json
\u804F
Python
\u804F
Perl
\x{804F}
PHP
\x{804F}
Ruby
\u{804F}
Rust
\u{804F}
Go
\u804F

Web

CSS
\00804F
HtmlDecimal
聏
HtmlHexadecimal
聏
Url
%E8%81%8F

Code

MD5
5a092b58ed4402df8a27288422774434
Sha1
0c7e7d7a341036fda0dea29fe61294bdaca1b9a7
Base64
6IGP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u804F';
console.log(char);  // Output: 聏

Java:

char c = '\u804F';
System.out.println(c);  // Output: 聏

JSON:

{"text": "\u804F"}  // Value: 聏

Python:

char = '\u804F'
print(char)  # Output: 聏

Perl:

my $char = "\x{804F}";
print $char;  # Output: 聏

PHP:

$char = "\x{804F}";
echo $char;  // Output: 聏

Ruby:

char = "\u{804F}"
puts char  # Output: 聏

Rust:

let c = '\u{804F}';
println!("{}", c);  // Output: 聏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00804F";  /* Display: 聏 */
}

HTML Decimal:

<p>HTML decimal: &#32847;</p>  <!-- Display: 聏 -->

HTML Hexadecimal:

<p>HTML hex: &#x804F;</p>  <!-- Display: 聏 -->

URL Encoding:

// 聏 URL encoding
https://unicodefinder.com/search.php?query=%E8%81%8F

Encodings

MD5:

5a092b58ed4402df8a27288422774434

SHA1:

0c7e7d7a341036fda0dea29fe61294bdaca1b9a7

Base64:

6IGP