Unicode Finder

"銂" U+9282(CJK UNIFIED IDEOGRAPH-9282)

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

Programming

C
\u9282
JavaScript
\u9282
Java
\u9282
Json
\u9282
Python
\u9282
Perl
\x{9282}
PHP
\x{9282}
Ruby
\u{9282}
Rust
\u{9282}
Go
\u9282

Web

CSS
\009282
HtmlDecimal
銂
HtmlHexadecimal
銂
Url
%E9%8A%82

Code

MD5
f1af97d7e6577abaaea95cd99ed445ae
Sha1
8db28fc17fa951c617e2de8e6770c7ffd8c99f43
Base64
6YqC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9282';
console.log(char);  // Output: 銂

Java:

char c = '\u9282';
System.out.println(c);  // Output: 銂

JSON:

{"text": "\u9282"}  // Value: 銂

Python:

char = '\u9282'
print(char)  # Output: 銂

Perl:

my $char = "\x{9282}";
print $char;  # Output: 銂

PHP:

$char = "\x{9282}";
echo $char;  // Output: 銂

Ruby:

char = "\u{9282}"
puts char  # Output: 銂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009282";  /* Display: 銂 */
}

HTML Decimal:

<p>HTML decimal: &#37506;</p>  <!-- Display: 銂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9282;</p>  <!-- Display: 銂 -->

URL Encoding:

// 銂 URL encoding
https://unicodefinder.com/search.php?query=%E9%8A%82

Encodings

MD5:

f1af97d7e6577abaaea95cd99ed445ae

SHA1:

8db28fc17fa951c617e2de8e6770c7ffd8c99f43

Base64:

6YqC