Unicode Finder

"鍿" U+937F(CJK UNIFIED IDEOGRAPH-937F)

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

Programming

C
\u937F
JavaScript
\u937F
Java
\u937F
Json
\u937F
Python
\u937F
Perl
\x{937F}
PHP
\x{937F}
Ruby
\u{937F}
Rust
\u{937F}
Go
\u937F

Web

CSS
\00937F
HtmlDecimal
鍿
HtmlHexadecimal
鍿
Url
%E9%8D%BF

Code

MD5
b5769573744a907b50bb54c2cafeaa8b
Sha1
01ebe1c765d9f37a0fc980ea9b8ee3875380d6a3
Base64
6Y2/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u937F';
console.log(char);  // Output: 鍿

Java:

char c = '\u937F';
System.out.println(c);  // Output: 鍿

JSON:

{"text": "\u937F"}  // Value: 鍿

Python:

char = '\u937F'
print(char)  # Output: 鍿

Perl:

my $char = "\x{937F}";
print $char;  # Output: 鍿

PHP:

$char = "\x{937F}";
echo $char;  // Output: 鍿

Ruby:

char = "\u{937F}"
puts char  # Output: 鍿

Rust:

let c = '\u{937F}';
println!("{}", c);  // Output: 鍿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00937F";  /* Display: 鍿 */
}

HTML Decimal:

<p>HTML decimal: &#37759;</p>  <!-- Display: 鍿 -->

HTML Hexadecimal:

<p>HTML hex: &#x937F;</p>  <!-- Display: 鍿 -->

URL Encoding:

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

Encodings

MD5:

b5769573744a907b50bb54c2cafeaa8b

SHA1:

01ebe1c765d9f37a0fc980ea9b8ee3875380d6a3

Base64:

6Y2/