Unicode Finder

"锠" U+9520(CJK UNIFIED IDEOGRAPH-9520)

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

Programming

C
\u9520
JavaScript
\u9520
Java
\u9520
Json
\u9520
Python
\u9520
Perl
\x{9520}
PHP
\x{9520}
Ruby
\u{9520}
Rust
\u{9520}
Go
\u9520

Web

CSS
\009520
HtmlDecimal
锠
HtmlHexadecimal
锠
Url
%E9%94%A0

Code

MD5
4d3e927741123dd7478efcf24213939d
Sha1
a04dd6006173b7549d679445c0ac1fbcf59d8678
Base64
6ZSg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9520';
console.log(char);  // Output: 锠

Java:

char c = '\u9520';
System.out.println(c);  // Output: 锠

JSON:

{"text": "\u9520"}  // Value: 锠

Python:

char = '\u9520'
print(char)  # Output: 锠

Perl:

my $char = "\x{9520}";
print $char;  # Output: 锠

PHP:

$char = "\x{9520}";
echo $char;  // Output: 锠

Ruby:

char = "\u{9520}"
puts char  # Output: 锠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009520";  /* Display: 锠 */
}

HTML Decimal:

<p>HTML decimal: &#38176;</p>  <!-- Display: 锠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9520;</p>  <!-- Display: 锠 -->

URL Encoding:

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

Encodings

MD5:

4d3e927741123dd7478efcf24213939d

SHA1:

a04dd6006173b7549d679445c0ac1fbcf59d8678

Base64:

6ZSg