Unicode Finder

"鈖" U+9216(CJK UNIFIED IDEOGRAPH-9216)

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

Programming

C
\u9216
JavaScript
\u9216
Java
\u9216
Json
\u9216
Python
\u9216
Perl
\x{9216}
PHP
\x{9216}
Ruby
\u{9216}
Rust
\u{9216}
Go
\u9216

Web

CSS
\009216
HtmlDecimal
鈖
HtmlHexadecimal
鈖
Url
%E9%88%96

Code

MD5
58afe06b28e8bf10e0d2a572aec4d410
Sha1
c2724322cff3e8e293f422f198de7b6566dbe9cf
Base64
6YiW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9216';
console.log(char);  // Output: 鈖

Java:

char c = '\u9216';
System.out.println(c);  // Output: 鈖

JSON:

{"text": "\u9216"}  // Value: 鈖

Python:

char = '\u9216'
print(char)  # Output: 鈖

Perl:

my $char = "\x{9216}";
print $char;  # Output: 鈖

PHP:

$char = "\x{9216}";
echo $char;  // Output: 鈖

Ruby:

char = "\u{9216}"
puts char  # Output: 鈖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009216";  /* Display: 鈖 */
}

HTML Decimal:

<p>HTML decimal: &#37398;</p>  <!-- Display: 鈖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9216;</p>  <!-- Display: 鈖 -->

URL Encoding:

// 鈖 URL encoding
https://unicodefinder.com/search.php?query=%E9%88%96

Encodings

MD5:

58afe06b28e8bf10e0d2a572aec4d410

SHA1:

c2724322cff3e8e293f422f198de7b6566dbe9cf

Base64:

6YiW