Unicode Finder

"銐" U+9290(CJK UNIFIED IDEOGRAPH-9290)

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

Programming

C
\u9290
JavaScript
\u9290
Java
\u9290
Json
\u9290
Python
\u9290
Perl
\x{9290}
PHP
\x{9290}
Ruby
\u{9290}
Rust
\u{9290}
Go
\u9290

Web

CSS
\009290
HtmlDecimal
銐
HtmlHexadecimal
銐
Url
%E9%8A%90

Code

MD5
a8a875a7fad00b8b196f78d344e7cf99
Sha1
4d882517a611c2db820cfd77ea3be871be1b29a8
Base64
6YqQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9290';
console.log(char);  // Output: 銐

Java:

char c = '\u9290';
System.out.println(c);  // Output: 銐

JSON:

{"text": "\u9290"}  // Value: 銐

Python:

char = '\u9290'
print(char)  # Output: 銐

Perl:

my $char = "\x{9290}";
print $char;  # Output: 銐

PHP:

$char = "\x{9290}";
echo $char;  // Output: 銐

Ruby:

char = "\u{9290}"
puts char  # Output: 銐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009290";  /* Display: 銐 */
}

HTML Decimal:

<p>HTML decimal: &#37520;</p>  <!-- Display: 銐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9290;</p>  <!-- Display: 銐 -->

URL Encoding:

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

Encodings

MD5:

a8a875a7fad00b8b196f78d344e7cf99

SHA1:

4d882517a611c2db820cfd77ea3be871be1b29a8

Base64:

6YqQ