Unicode Finder

"厚" U+539A(CJK UNIFIED IDEOGRAPH-539A)

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

Programming

C
\u539A
JavaScript
\u539A
Java
\u539A
Json
\u539A
Python
\u539A
Perl
\x{539A}
PHP
\x{539A}
Ruby
\u{539A}
Rust
\u{539A}
Go
\u539A

Web

CSS
\00539A
HtmlDecimal
厚
HtmlHexadecimal
厚
Url
%E5%8E%9A

Code

MD5
ba8c173b23e0f3d7e0e21944a2ff6898
Sha1
7cc2333d5611e906d9cc988932756ad8c3717d8c
Base64
5Y6a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u539A';
console.log(char);  // Output: 厚

Java:

char c = '\u539A';
System.out.println(c);  // Output: 厚

JSON:

{"text": "\u539A"}  // Value: 厚

Python:

char = '\u539A'
print(char)  # Output: 厚

Perl:

my $char = "\x{539A}";
print $char;  # Output: 厚

PHP:

$char = "\x{539A}";
echo $char;  // Output: 厚

Ruby:

char = "\u{539A}"
puts char  # Output: 厚

Rust:

let c = '\u{539A}';
println!("{}", c);  // Output: 厚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00539A";  /* Display: 厚 */
}

HTML Decimal:

<p>HTML decimal: &#21402;</p>  <!-- Display: 厚 -->

HTML Hexadecimal:

<p>HTML hex: &#x539A;</p>  <!-- Display: 厚 -->

URL Encoding:

// 厚 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%9A

Encodings

MD5:

ba8c173b23e0f3d7e0e21944a2ff6898

SHA1:

7cc2333d5611e906d9cc988932756ad8c3717d8c

Base64:

5Y6a