Unicode Finder

"蔢" U+8522(CJK UNIFIED IDEOGRAPH-8522)

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

Programming

C
\u8522
JavaScript
\u8522
Java
\u8522
Json
\u8522
Python
\u8522
Perl
\x{8522}
PHP
\x{8522}
Ruby
\u{8522}
Rust
\u{8522}
Go
\u8522

Web

CSS
\008522
HtmlDecimal
蔢
HtmlHexadecimal
蔢
Url
%E8%94%A2

Code

MD5
1c91cc9fe4d411e487c410dd54b0f0b7
Sha1
046e13a1199ff0b5d836662c0f38a87cc301a096
Base64
6JSi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8522';
console.log(char);  // Output: 蔢

Java:

char c = '\u8522';
System.out.println(c);  // Output: 蔢

JSON:

{"text": "\u8522"}  // Value: 蔢

Python:

char = '\u8522'
print(char)  # Output: 蔢

Perl:

my $char = "\x{8522}";
print $char;  # Output: 蔢

PHP:

$char = "\x{8522}";
echo $char;  // Output: 蔢

Ruby:

char = "\u{8522}"
puts char  # Output: 蔢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008522";  /* Display: 蔢 */
}

HTML Decimal:

<p>HTML decimal: &#34082;</p>  <!-- Display: 蔢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8522;</p>  <!-- Display: 蔢 -->

URL Encoding:

// 蔢 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%A2

Encodings

MD5:

1c91cc9fe4d411e487c410dd54b0f0b7

SHA1:

046e13a1199ff0b5d836662c0f38a87cc301a096

Base64:

6JSi