Unicode Finder

"銀" U+9280(CJK UNIFIED IDEOGRAPH-9280)

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

Programming

C
\u9280
JavaScript
\u9280
Java
\u9280
Json
\u9280
Python
\u9280
Perl
\x{9280}
PHP
\x{9280}
Ruby
\u{9280}
Rust
\u{9280}
Go
\u9280

Web

CSS
\009280
HtmlDecimal
銀
HtmlHexadecimal
銀
Url
%E9%8A%80

Code

MD5
e8afb0ae46230ed21574e70cc592bee6
Sha1
ba9358753016902d1b526e0de41257601cf62ea1
Base64
6YqA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9280';
console.log(char);  // Output: 銀

Java:

char c = '\u9280';
System.out.println(c);  // Output: 銀

JSON:

{"text": "\u9280"}  // Value: 銀

Python:

char = '\u9280'
print(char)  # Output: 銀

Perl:

my $char = "\x{9280}";
print $char;  # Output: 銀

PHP:

$char = "\x{9280}";
echo $char;  // Output: 銀

Ruby:

char = "\u{9280}"
puts char  # Output: 銀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009280";  /* Display: 銀 */
}

HTML Decimal:

<p>HTML decimal: &#37504;</p>  <!-- Display: 銀 -->

HTML Hexadecimal:

<p>HTML hex: &#x9280;</p>  <!-- Display: 銀 -->

URL Encoding:

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

Encodings

MD5:

e8afb0ae46230ed21574e70cc592bee6

SHA1:

ba9358753016902d1b526e0de41257601cf62ea1

Base64:

6YqA