Unicode Finder

"厍" U+538D(CJK UNIFIED IDEOGRAPH-538D)

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

Programming

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

Web

CSS
\00538D
HtmlDecimal
厍
HtmlHexadecimal
厍
Url
%E5%8E%8D

Code

MD5
5e63b8673a7120cb1837859851a53770
Sha1
3cc10066072fd647bedc7e3d4a256b1ef01f5c8a
Base64
5Y6N

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u538D';
console.log(char);  // Output: 厍

Java:

char c = '\u538D';
System.out.println(c);  // Output: 厍

JSON:

{"text": "\u538D"}  // Value: 厍

Python:

char = '\u538D'
print(char)  # Output: 厍

Perl:

my $char = "\x{538D}";
print $char;  # Output: 厍

PHP:

$char = "\x{538D}";
echo $char;  // Output: 厍

Ruby:

char = "\u{538D}"
puts char  # Output: 厍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21389;</p>  <!-- Display: 厍 -->

HTML Hexadecimal:

<p>HTML hex: &#x538D;</p>  <!-- Display: 厍 -->

URL Encoding:

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

Encodings

MD5:

5e63b8673a7120cb1837859851a53770

SHA1:

3cc10066072fd647bedc7e3d4a256b1ef01f5c8a

Base64:

5Y6N