Unicode Finder

"匥" U+5325(CJK UNIFIED IDEOGRAPH-5325)

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

Programming

C
\u5325
JavaScript
\u5325
Java
\u5325
Json
\u5325
Python
\u5325
Perl
\x{5325}
PHP
\x{5325}
Ruby
\u{5325}
Rust
\u{5325}
Go
\u5325

Web

CSS
\005325
HtmlDecimal
匥
HtmlHexadecimal
匥
Url
%E5%8C%A5

Code

MD5
fbdb5c6693bb7c7877c572c4251ece98
Sha1
074dd420429d405562cc6c07f1e23db89570e1e9
Base64
5Yyl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5325';
console.log(char);  // Output: 匥

Java:

char c = '\u5325';
System.out.println(c);  // Output: 匥

JSON:

{"text": "\u5325"}  // Value: 匥

Python:

char = '\u5325'
print(char)  # Output: 匥

Perl:

my $char = "\x{5325}";
print $char;  # Output: 匥

PHP:

$char = "\x{5325}";
echo $char;  // Output: 匥

Ruby:

char = "\u{5325}"
puts char  # Output: 匥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005325";  /* Display: 匥 */
}

HTML Decimal:

<p>HTML decimal: &#21285;</p>  <!-- Display: 匥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5325;</p>  <!-- Display: 匥 -->

URL Encoding:

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

Encodings

MD5:

fbdb5c6693bb7c7877c572c4251ece98

SHA1:

074dd420429d405562cc6c07f1e23db89570e1e9

Base64:

5Yyl