Unicode Finder

"华" U+534E(CJK UNIFIED IDEOGRAPH-534E)

U+534E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-534E

Programming

C
\u534E
JavaScript
\u534E
Java
\u534E
Json
\u534E
Python
\u534E
Perl
\x{534E}
PHP
\x{534E}
Ruby
\u{534E}
Rust
\u{534E}
Go
\u534E

Web

CSS
\00534E
HtmlDecimal
华
HtmlHexadecimal
华
Url
%E5%8D%8E

Code

MD5
9a0470878e6bdf5eced349d04a01989a
Sha1
4994bf402e174fd8b5f0f08dd555883f56df3133
Base64
5Y2O

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u534E';
console.log(char);  // Output: 华

Java:

char c = '\u534E';
System.out.println(c);  // Output: 华

JSON:

{"text": "\u534E"}  // Value: 华

Python:

char = '\u534E'
print(char)  # Output: 华

Perl:

my $char = "\x{534E}";
print $char;  # Output: 华

PHP:

$char = "\x{534E}";
echo $char;  // Output: 华

Ruby:

char = "\u{534E}"
puts char  # Output: 华

Rust:

let c = '\u{534E}';
println!("{}", c);  // Output: 华

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00534E";  /* Display: 华 */
}

HTML Decimal:

<p>HTML decimal: &#21326;</p>  <!-- Display: 华 -->

HTML Hexadecimal:

<p>HTML hex: &#x534E;</p>  <!-- Display: 华 -->

URL Encoding:

// 华 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%8E

Encodings

MD5:

9a0470878e6bdf5eced349d04a01989a

SHA1:

4994bf402e174fd8b5f0f08dd555883f56df3133

Base64:

5Y2O