Unicode Finder

"匢" U+5322(CJK UNIFIED IDEOGRAPH-5322)

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

Programming

C
\u5322
JavaScript
\u5322
Java
\u5322
Json
\u5322
Python
\u5322
Perl
\x{5322}
PHP
\x{5322}
Ruby
\u{5322}
Rust
\u{5322}
Go
\u5322

Web

CSS
\005322
HtmlDecimal
匢
HtmlHexadecimal
匢
Url
%E5%8C%A2

Code

MD5
fc6ce7c256cdd0ef77c1680f87cad3e1
Sha1
387ad8407bff0bcfba1bb176324b7ef63b457651
Base64
5Yyi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5322';
console.log(char);  // Output: 匢

Java:

char c = '\u5322';
System.out.println(c);  // Output: 匢

JSON:

{"text": "\u5322"}  // Value: 匢

Python:

char = '\u5322'
print(char)  # Output: 匢

Perl:

my $char = "\x{5322}";
print $char;  # Output: 匢

PHP:

$char = "\x{5322}";
echo $char;  // Output: 匢

Ruby:

char = "\u{5322}"
puts char  # Output: 匢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005322";  /* Display: 匢 */
}

HTML Decimal:

<p>HTML decimal: &#21282;</p>  <!-- Display: 匢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5322;</p>  <!-- Display: 匢 -->

URL Encoding:

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

Encodings

MD5:

fc6ce7c256cdd0ef77c1680f87cad3e1

SHA1:

387ad8407bff0bcfba1bb176324b7ef63b457651

Base64:

5Yyi