Unicode Finder

"厏" U+538F(CJK UNIFIED IDEOGRAPH-538F)

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

Programming

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

Web

CSS
\00538F
HtmlDecimal
厏
HtmlHexadecimal
厏
Url
%E5%8E%8F

Code

MD5
6c3a14ad31270118e42df3f112e99d15
Sha1
4bc223004415989092fb0f5e8b1431a028bce8f5
Base64
5Y6P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u538F';
console.log(char);  // Output: 厏

Java:

char c = '\u538F';
System.out.println(c);  // Output: 厏

JSON:

{"text": "\u538F"}  // Value: 厏

Python:

char = '\u538F'
print(char)  # Output: 厏

Perl:

my $char = "\x{538F}";
print $char;  # Output: 厏

PHP:

$char = "\x{538F}";
echo $char;  // Output: 厏

Ruby:

char = "\u{538F}"
puts char  # Output: 厏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21391;</p>  <!-- Display: 厏 -->

HTML Hexadecimal:

<p>HTML hex: &#x538F;</p>  <!-- Display: 厏 -->

URL Encoding:

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

Encodings

MD5:

6c3a14ad31270118e42df3f112e99d15

SHA1:

4bc223004415989092fb0f5e8b1431a028bce8f5

Base64:

5Y6P