Unicode Finder

"鍶" U+9376(CJK UNIFIED IDEOGRAPH-9376)

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

Programming

C
\u9376
JavaScript
\u9376
Java
\u9376
Json
\u9376
Python
\u9376
Perl
\x{9376}
PHP
\x{9376}
Ruby
\u{9376}
Rust
\u{9376}
Go
\u9376

Web

CSS
\009376
HtmlDecimal
鍶
HtmlHexadecimal
鍶
Url
%E9%8D%B6

Code

MD5
f1ae33f5d476af59036f8ed8909e2733
Sha1
93c53c35285ca2af2c24482afc6e309e3fc2c1d8
Base64
6Y22

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9376';
console.log(char);  // Output: 鍶

Java:

char c = '\u9376';
System.out.println(c);  // Output: 鍶

JSON:

{"text": "\u9376"}  // Value: 鍶

Python:

char = '\u9376'
print(char)  # Output: 鍶

Perl:

my $char = "\x{9376}";
print $char;  # Output: 鍶

PHP:

$char = "\x{9376}";
echo $char;  // Output: 鍶

Ruby:

char = "\u{9376}"
puts char  # Output: 鍶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009376";  /* Display: 鍶 */
}

HTML Decimal:

<p>HTML decimal: &#37750;</p>  <!-- Display: 鍶 -->

HTML Hexadecimal:

<p>HTML hex: &#x9376;</p>  <!-- Display: 鍶 -->

URL Encoding:

// 鍶 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%B6

Encodings

MD5:

f1ae33f5d476af59036f8ed8909e2733

SHA1:

93c53c35285ca2af2c24482afc6e309e3fc2c1d8

Base64:

6Y22