Unicode Finder

"厑" U+5391(CJK UNIFIED IDEOGRAPH-5391)

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

Programming

C
\u5391
JavaScript
\u5391
Java
\u5391
Json
\u5391
Python
\u5391
Perl
\x{5391}
PHP
\x{5391}
Ruby
\u{5391}
Rust
\u{5391}
Go
\u5391

Web

CSS
\005391
HtmlDecimal
厑
HtmlHexadecimal
厑
Url
%E5%8E%91

Code

MD5
553f63190301d6e3fd1de0612428b762
Sha1
070f239106551280fa92c76444cf90861a3f4257
Base64
5Y6R

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5391';
console.log(char);  // Output: 厑

Java:

char c = '\u5391';
System.out.println(c);  // Output: 厑

JSON:

{"text": "\u5391"}  // Value: 厑

Python:

char = '\u5391'
print(char)  # Output: 厑

Perl:

my $char = "\x{5391}";
print $char;  # Output: 厑

PHP:

$char = "\x{5391}";
echo $char;  // Output: 厑

Ruby:

char = "\u{5391}"
puts char  # Output: 厑

Rust:

let c = '\u{5391}';
println!("{}", c);  // Output: 厑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005391";  /* Display: 厑 */
}

HTML Decimal:

<p>HTML decimal: &#21393;</p>  <!-- Display: 厑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5391;</p>  <!-- Display: 厑 -->

URL Encoding:

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

Encodings

MD5:

553f63190301d6e3fd1de0612428b762

SHA1:

070f239106551280fa92c76444cf90861a3f4257

Base64:

5Y6R