Unicode Finder

"鎛" U+939B(CJK UNIFIED IDEOGRAPH-939B)

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

Programming

C
\u939B
JavaScript
\u939B
Java
\u939B
Json
\u939B
Python
\u939B
Perl
\x{939B}
PHP
\x{939B}
Ruby
\u{939B}
Rust
\u{939B}
Go
\u939B

Web

CSS
\00939B
HtmlDecimal
鎛
HtmlHexadecimal
鎛
Url
%E9%8E%9B

Code

MD5
41f285d34bae240abf55817fced3c4a3
Sha1
0d19c83d8b62288a7697a16b5c859720454e67a1
Base64
6Y6b

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u939B';
console.log(char);  // Output: 鎛

Java:

char c = '\u939B';
System.out.println(c);  // Output: 鎛

JSON:

{"text": "\u939B"}  // Value: 鎛

Python:

char = '\u939B'
print(char)  # Output: 鎛

Perl:

my $char = "\x{939B}";
print $char;  # Output: 鎛

PHP:

$char = "\x{939B}";
echo $char;  // Output: 鎛

Ruby:

char = "\u{939B}"
puts char  # Output: 鎛

Rust:

let c = '\u{939B}';
println!("{}", c);  // Output: 鎛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00939B";  /* Display: 鎛 */
}

HTML Decimal:

<p>HTML decimal: &#37787;</p>  <!-- Display: 鎛 -->

HTML Hexadecimal:

<p>HTML hex: &#x939B;</p>  <!-- Display: 鎛 -->

URL Encoding:

// 鎛 URL encoding
https://unicodefinder.com/search.php?query=%E9%8E%9B

Encodings

MD5:

41f285d34bae240abf55817fced3c4a3

SHA1:

0d19c83d8b62288a7697a16b5c859720454e67a1

Base64:

6Y6b