Unicode Finder

"銆" U+9286(CJK UNIFIED IDEOGRAPH-9286)

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

Programming

C
\u9286
JavaScript
\u9286
Java
\u9286
Json
\u9286
Python
\u9286
Perl
\x{9286}
PHP
\x{9286}
Ruby
\u{9286}
Rust
\u{9286}
Go
\u9286

Web

CSS
\009286
HtmlDecimal
銆
HtmlHexadecimal
銆
Url
%E9%8A%86

Code

MD5
1a21f5f038a2aeb44f5cfa4bb4df5d57
Sha1
2e9ed4bcfab292dd70bedf2cb715eb2a95e05967
Base64
6YqG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9286';
console.log(char);  // Output: 銆

Java:

char c = '\u9286';
System.out.println(c);  // Output: 銆

JSON:

{"text": "\u9286"}  // Value: 銆

Python:

char = '\u9286'
print(char)  # Output: 銆

Perl:

my $char = "\x{9286}";
print $char;  # Output: 銆

PHP:

$char = "\x{9286}";
echo $char;  // Output: 銆

Ruby:

char = "\u{9286}"
puts char  # Output: 銆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009286";  /* Display: 銆 */
}

HTML Decimal:

<p>HTML decimal: &#37510;</p>  <!-- Display: 銆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9286;</p>  <!-- Display: 銆 -->

URL Encoding:

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

Encodings

MD5:

1a21f5f038a2aeb44f5cfa4bb4df5d57

SHA1:

2e9ed4bcfab292dd70bedf2cb715eb2a95e05967

Base64:

6YqG