Unicode Finder

"銁" U+9281(CJK UNIFIED IDEOGRAPH-9281)

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

Programming

C
\u9281
JavaScript
\u9281
Java
\u9281
Json
\u9281
Python
\u9281
Perl
\x{9281}
PHP
\x{9281}
Ruby
\u{9281}
Rust
\u{9281}
Go
\u9281

Web

CSS
\009281
HtmlDecimal
銁
HtmlHexadecimal
銁
Url
%E9%8A%81

Code

MD5
31c4d2ec22958aab748722ae38a34758
Sha1
fe7591ecdd691de93b36da017c8748db51e727ca
Base64
6YqB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9281';
console.log(char);  // Output: 銁

Java:

char c = '\u9281';
System.out.println(c);  // Output: 銁

JSON:

{"text": "\u9281"}  // Value: 銁

Python:

char = '\u9281'
print(char)  # Output: 銁

Perl:

my $char = "\x{9281}";
print $char;  # Output: 銁

PHP:

$char = "\x{9281}";
echo $char;  // Output: 銁

Ruby:

char = "\u{9281}"
puts char  # Output: 銁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009281";  /* Display: 銁 */
}

HTML Decimal:

<p>HTML decimal: &#37505;</p>  <!-- Display: 銁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9281;</p>  <!-- Display: 銁 -->

URL Encoding:

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

Encodings

MD5:

31c4d2ec22958aab748722ae38a34758

SHA1:

fe7591ecdd691de93b36da017c8748db51e727ca

Base64:

6YqB