Unicode Finder

"锨" U+9528(CJK UNIFIED IDEOGRAPH-9528)

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

Programming

C
\u9528
JavaScript
\u9528
Java
\u9528
Json
\u9528
Python
\u9528
Perl
\x{9528}
PHP
\x{9528}
Ruby
\u{9528}
Rust
\u{9528}
Go
\u9528

Web

CSS
\009528
HtmlDecimal
锨
HtmlHexadecimal
锨
Url
%E9%94%A8

Code

MD5
0dfa0f58ece17e784959e3ae3a51f145
Sha1
65b0aed38edf3580f718e9992e24cfb81e13b2c4
Base64
6ZSo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9528';
console.log(char);  // Output: 锨

Java:

char c = '\u9528';
System.out.println(c);  // Output: 锨

JSON:

{"text": "\u9528"}  // Value: 锨

Python:

char = '\u9528'
print(char)  # Output: 锨

Perl:

my $char = "\x{9528}";
print $char;  # Output: 锨

PHP:

$char = "\x{9528}";
echo $char;  // Output: 锨

Ruby:

char = "\u{9528}"
puts char  # Output: 锨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009528";  /* Display: 锨 */
}

HTML Decimal:

<p>HTML decimal: &#38184;</p>  <!-- Display: 锨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9528;</p>  <!-- Display: 锨 -->

URL Encoding:

// 锨 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%A8

Encodings

MD5:

0dfa0f58ece17e784959e3ae3a51f145

SHA1:

65b0aed38edf3580f718e9992e24cfb81e13b2c4

Base64:

6ZSo