Unicode Finder

"匩" U+5329(CJK UNIFIED IDEOGRAPH-5329)

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

Programming

C
\u5329
JavaScript
\u5329
Java
\u5329
Json
\u5329
Python
\u5329
Perl
\x{5329}
PHP
\x{5329}
Ruby
\u{5329}
Rust
\u{5329}
Go
\u5329

Web

CSS
\005329
HtmlDecimal
匩
HtmlHexadecimal
匩
Url
%E5%8C%A9

Code

MD5
94d57596cef50950b7a675e4d1a28f1e
Sha1
22e276046977541f296b1a991a08f56d7d954126
Base64
5Yyp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5329';
console.log(char);  // Output: 匩

Java:

char c = '\u5329';
System.out.println(c);  // Output: 匩

JSON:

{"text": "\u5329"}  // Value: 匩

Python:

char = '\u5329'
print(char)  # Output: 匩

Perl:

my $char = "\x{5329}";
print $char;  # Output: 匩

PHP:

$char = "\x{5329}";
echo $char;  // Output: 匩

Ruby:

char = "\u{5329}"
puts char  # Output: 匩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005329";  /* Display: 匩 */
}

HTML Decimal:

<p>HTML decimal: &#21289;</p>  <!-- Display: 匩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5329;</p>  <!-- Display: 匩 -->

URL Encoding:

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

Encodings

MD5:

94d57596cef50950b7a675e4d1a28f1e

SHA1:

22e276046977541f296b1a991a08f56d7d954126

Base64:

5Yyp