Unicode Finder

"蔡" U+8521(CJK UNIFIED IDEOGRAPH-8521)

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

Programming

C
\u8521
JavaScript
\u8521
Java
\u8521
Json
\u8521
Python
\u8521
Perl
\x{8521}
PHP
\x{8521}
Ruby
\u{8521}
Rust
\u{8521}
Go
\u8521

Web

CSS
\008521
HtmlDecimal
蔡
HtmlHexadecimal
蔡
Url
%E8%94%A1

Code

MD5
bebff03735a51af22c7ee1aac0ccc250
Sha1
72b4020d61ce20aa1cbd111ba224360701fc5e3a
Base64
6JSh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8521';
console.log(char);  // Output: 蔡

Java:

char c = '\u8521';
System.out.println(c);  // Output: 蔡

JSON:

{"text": "\u8521"}  // Value: 蔡

Python:

char = '\u8521'
print(char)  # Output: 蔡

Perl:

my $char = "\x{8521}";
print $char;  # Output: 蔡

PHP:

$char = "\x{8521}";
echo $char;  // Output: 蔡

Ruby:

char = "\u{8521}"
puts char  # Output: 蔡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008521";  /* Display: 蔡 */
}

HTML Decimal:

<p>HTML decimal: &#34081;</p>  <!-- Display: 蔡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8521;</p>  <!-- Display: 蔡 -->

URL Encoding:

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

Encodings

MD5:

bebff03735a51af22c7ee1aac0ccc250

SHA1:

72b4020d61ce20aa1cbd111ba224360701fc5e3a

Base64:

6JSh