Unicode Finder

"锑" U+9511(CJK UNIFIED IDEOGRAPH-9511)

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

Programming

C
\u9511
JavaScript
\u9511
Java
\u9511
Json
\u9511
Python
\u9511
Perl
\x{9511}
PHP
\x{9511}
Ruby
\u{9511}
Rust
\u{9511}
Go
\u9511

Web

CSS
\009511
HtmlDecimal
锑
HtmlHexadecimal
锑
Url
%E9%94%91

Code

MD5
d0129dd0eb320f8bc0e32d9ed57e2fb8
Sha1
1e59e0c76945add33deec91140d31817531d8b5e
Base64
6ZSR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9511';
console.log(char);  // Output: 锑

Java:

char c = '\u9511';
System.out.println(c);  // Output: 锑

JSON:

{"text": "\u9511"}  // Value: 锑

Python:

char = '\u9511'
print(char)  # Output: 锑

Perl:

my $char = "\x{9511}";
print $char;  # Output: 锑

PHP:

$char = "\x{9511}";
echo $char;  // Output: 锑

Ruby:

char = "\u{9511}"
puts char  # Output: 锑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009511";  /* Display: 锑 */
}

HTML Decimal:

<p>HTML decimal: &#38161;</p>  <!-- Display: 锑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9511;</p>  <!-- Display: 锑 -->

URL Encoding:

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

Encodings

MD5:

d0129dd0eb320f8bc0e32d9ed57e2fb8

SHA1:

1e59e0c76945add33deec91140d31817531d8b5e

Base64:

6ZSR