Unicode Finder

"匱" U+5331(CJK UNIFIED IDEOGRAPH-5331)

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

Programming

C
\u5331
JavaScript
\u5331
Java
\u5331
Json
\u5331
Python
\u5331
Perl
\x{5331}
PHP
\x{5331}
Ruby
\u{5331}
Rust
\u{5331}
Go
\u5331

Web

CSS
\005331
HtmlDecimal
匱
HtmlHexadecimal
匱
Url
%E5%8C%B1

Code

MD5
e95fbc9361a5dd66edb5302f1c6cca8c
Sha1
19f3f264bd1dd96cf58393c0517272cff5313506
Base64
5Yyx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5331';
console.log(char);  // Output: 匱

Java:

char c = '\u5331';
System.out.println(c);  // Output: 匱

JSON:

{"text": "\u5331"}  // Value: 匱

Python:

char = '\u5331'
print(char)  # Output: 匱

Perl:

my $char = "\x{5331}";
print $char;  # Output: 匱

PHP:

$char = "\x{5331}";
echo $char;  // Output: 匱

Ruby:

char = "\u{5331}"
puts char  # Output: 匱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005331";  /* Display: 匱 */
}

HTML Decimal:

<p>HTML decimal: &#21297;</p>  <!-- Display: 匱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5331;</p>  <!-- Display: 匱 -->

URL Encoding:

// 匱 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%B1

Encodings

MD5:

e95fbc9361a5dd66edb5302f1c6cca8c

SHA1:

19f3f264bd1dd96cf58393c0517272cff5313506

Base64:

5Yyx