Unicode Finder

"鎜" U+939C(CJK UNIFIED IDEOGRAPH-939C)

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

Programming

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

Web

CSS
\00939C
HtmlDecimal
鎜
HtmlHexadecimal
鎜
Url
%E9%8E%9C

Code

MD5
8ab707de39ee07baa13524b496b950ee
Sha1
13cd274108339b2bdd9d04917862f864035c1ee0
Base64
6Y6c

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u939C';
console.log(char);  // Output: 鎜

Java:

char c = '\u939C';
System.out.println(c);  // Output: 鎜

JSON:

{"text": "\u939C"}  // Value: 鎜

Python:

char = '\u939C'
print(char)  # Output: 鎜

Perl:

my $char = "\x{939C}";
print $char;  # Output: 鎜

PHP:

$char = "\x{939C}";
echo $char;  // Output: 鎜

Ruby:

char = "\u{939C}"
puts char  # Output: 鎜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37788;</p>  <!-- Display: 鎜 -->

HTML Hexadecimal:

<p>HTML hex: &#x939C;</p>  <!-- Display: 鎜 -->

URL Encoding:

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

Encodings

MD5:

8ab707de39ee07baa13524b496b950ee

SHA1:

13cd274108339b2bdd9d04917862f864035c1ee0

Base64:

6Y6c