Unicode Finder

"鍷" U+9377(CJK UNIFIED IDEOGRAPH-9377)

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

Programming

C
\u9377
JavaScript
\u9377
Java
\u9377
Json
\u9377
Python
\u9377
Perl
\x{9377}
PHP
\x{9377}
Ruby
\u{9377}
Rust
\u{9377}
Go
\u9377

Web

CSS
\009377
HtmlDecimal
鍷
HtmlHexadecimal
鍷
Url
%E9%8D%B7

Code

MD5
6403ebc9a9ad5b31883b26d6eaf3e70d
Sha1
330a66e8c23fdcc1e0f74858bec518623710e652
Base64
6Y23

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9377';
console.log(char);  // Output: 鍷

Java:

char c = '\u9377';
System.out.println(c);  // Output: 鍷

JSON:

{"text": "\u9377"}  // Value: 鍷

Python:

char = '\u9377'
print(char)  # Output: 鍷

Perl:

my $char = "\x{9377}";
print $char;  # Output: 鍷

PHP:

$char = "\x{9377}";
echo $char;  // Output: 鍷

Ruby:

char = "\u{9377}"
puts char  # Output: 鍷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009377";  /* Display: 鍷 */
}

HTML Decimal:

<p>HTML decimal: &#37751;</p>  <!-- Display: 鍷 -->

HTML Hexadecimal:

<p>HTML hex: &#x9377;</p>  <!-- Display: 鍷 -->

URL Encoding:

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

Encodings

MD5:

6403ebc9a9ad5b31883b26d6eaf3e70d

SHA1:

330a66e8c23fdcc1e0f74858bec518623710e652

Base64:

6Y23