Unicode Finder

"厎" U+538E(CJK UNIFIED IDEOGRAPH-538E)

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

Programming

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

Web

CSS
\00538E
HtmlDecimal
厎
HtmlHexadecimal
厎
Url
%E5%8E%8E

Code

MD5
7ef12d1dcef566506323767bf2fa2197
Sha1
c4d30280c06d5578fb276e5d687c436402508b91
Base64
5Y6O

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u538E';
console.log(char);  // Output: 厎

Java:

char c = '\u538E';
System.out.println(c);  // Output: 厎

JSON:

{"text": "\u538E"}  // Value: 厎

Python:

char = '\u538E'
print(char)  # Output: 厎

Perl:

my $char = "\x{538E}";
print $char;  # Output: 厎

PHP:

$char = "\x{538E}";
echo $char;  // Output: 厎

Ruby:

char = "\u{538E}"
puts char  # Output: 厎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21390;</p>  <!-- Display: 厎 -->

HTML Hexadecimal:

<p>HTML hex: &#x538E;</p>  <!-- Display: 厎 -->

URL Encoding:

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

Encodings

MD5:

7ef12d1dcef566506323767bf2fa2197

SHA1:

c4d30280c06d5578fb276e5d687c436402508b91

Base64:

5Y6O