Unicode Finder

"聍" U+804D(CJK UNIFIED IDEOGRAPH-804D)

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

Programming

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

Web

CSS
\00804D
HtmlDecimal
聍
HtmlHexadecimal
聍
Url
%E8%81%8D

Code

MD5
7d8fae32db39d9ce4fa96b8f112c7f31
Sha1
d76ab573c445752c58988ccae7dbcd8494aca69f
Base64
6IGN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u804D';
console.log(char);  // Output: 聍

Java:

char c = '\u804D';
System.out.println(c);  // Output: 聍

JSON:

{"text": "\u804D"}  // Value: 聍

Python:

char = '\u804D'
print(char)  # Output: 聍

Perl:

my $char = "\x{804D}";
print $char;  # Output: 聍

PHP:

$char = "\x{804D}";
echo $char;  // Output: 聍

Ruby:

char = "\u{804D}"
puts char  # Output: 聍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32845;</p>  <!-- Display: 聍 -->

HTML Hexadecimal:

<p>HTML hex: &#x804D;</p>  <!-- Display: 聍 -->

URL Encoding:

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

Encodings

MD5:

7d8fae32db39d9ce4fa96b8f112c7f31

SHA1:

d76ab573c445752c58988ccae7dbcd8494aca69f

Base64:

6IGN