Unicode Finder

"銇" U+9287(CJK UNIFIED IDEOGRAPH-9287)

U+9287
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9287

Programming

C
\u9287
JavaScript
\u9287
Java
\u9287
Json
\u9287
Python
\u9287
Perl
\x{9287}
PHP
\x{9287}
Ruby
\u{9287}
Rust
\u{9287}
Go
\u9287

Web

CSS
\009287
HtmlDecimal
銇
HtmlHexadecimal
銇
Url
%E9%8A%87

Code

MD5
79cbe3963de11e18df14914c284d461c
Sha1
180e112c67b848c385e4a242f17e64e91477d78c
Base64
6YqH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9287';
console.log(char);  // Output: 銇

Java:

char c = '\u9287';
System.out.println(c);  // Output: 銇

JSON:

{"text": "\u9287"}  // Value: 銇

Python:

char = '\u9287'
print(char)  # Output: 銇

Perl:

my $char = "\x{9287}";
print $char;  # Output: 銇

PHP:

$char = "\x{9287}";
echo $char;  // Output: 銇

Ruby:

char = "\u{9287}"
puts char  # Output: 銇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009287";  /* Display: 銇 */
}

HTML Decimal:

<p>HTML decimal: &#37511;</p>  <!-- Display: 銇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9287;</p>  <!-- Display: 銇 -->

URL Encoding:

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

Encodings

MD5:

79cbe3963de11e18df14914c284d461c

SHA1:

180e112c67b848c385e4a242f17e64e91477d78c

Base64:

6YqH