Unicode Finder

"聁" U+8041(CJK UNIFIED IDEOGRAPH-8041)

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

Programming

C
\u8041
JavaScript
\u8041
Java
\u8041
Json
\u8041
Python
\u8041
Perl
\x{8041}
PHP
\x{8041}
Ruby
\u{8041}
Rust
\u{8041}
Go
\u8041

Web

CSS
\008041
HtmlDecimal
聁
HtmlHexadecimal
聁
Url
%E8%81%81

Code

MD5
e18e77eca9409cf66d75f290cb5cea5f
Sha1
bc6cfc43bed5e8b8fb3a4578024e7b33a9dd2f32
Base64
6IGB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8041';
console.log(char);  // Output: 聁

Java:

char c = '\u8041';
System.out.println(c);  // Output: 聁

JSON:

{"text": "\u8041"}  // Value: 聁

Python:

char = '\u8041'
print(char)  # Output: 聁

Perl:

my $char = "\x{8041}";
print $char;  # Output: 聁

PHP:

$char = "\x{8041}";
echo $char;  // Output: 聁

Ruby:

char = "\u{8041}"
puts char  # Output: 聁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008041";  /* Display: 聁 */
}

HTML Decimal:

<p>HTML decimal: &#32833;</p>  <!-- Display: 聁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8041;</p>  <!-- Display: 聁 -->

URL Encoding:

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

Encodings

MD5:

e18e77eca9409cf66d75f290cb5cea5f

SHA1:

bc6cfc43bed5e8b8fb3a4578024e7b33a9dd2f32

Base64:

6IGB