Unicode Finder

"魌" U+9B4C(CJK UNIFIED IDEOGRAPH-9B4C)

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

Programming

C
\u9B4C
JavaScript
\u9B4C
Java
\u9B4C
Json
\u9B4C
Python
\u9B4C
Perl
\x{9B4C}
PHP
\x{9B4C}
Ruby
\u{9B4C}
Rust
\u{9B4C}
Go
\u9B4C

Web

CSS
\009B4C
HtmlDecimal
魌
HtmlHexadecimal
魌
Url
%E9%AD%8C

Code

MD5
a8c052701e9703d323e4dabf164c1607
Sha1
436ad6889b6e40d152a31ce0be29f6d2550437a7
Base64
6a2M

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B4C';
console.log(char);  // Output: 魌

Java:

char c = '\u9B4C';
System.out.println(c);  // Output: 魌

JSON:

{"text": "\u9B4C"}  // Value: 魌

Python:

char = '\u9B4C'
print(char)  # Output: 魌

Perl:

my $char = "\x{9B4C}";
print $char;  # Output: 魌

PHP:

$char = "\x{9B4C}";
echo $char;  // Output: 魌

Ruby:

char = "\u{9B4C}"
puts char  # Output: 魌

Rust:

let c = '\u{9B4C}';
println!("{}", c);  // Output: 魌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009B4C";  /* Display: 魌 */
}

HTML Decimal:

<p>HTML decimal: &#39756;</p>  <!-- Display: 魌 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B4C;</p>  <!-- Display: 魌 -->

URL Encoding:

// 魌 URL encoding
https://unicodefinder.com/search.php?query=%E9%AD%8C

Encodings

MD5:

a8c052701e9703d323e4dabf164c1607

SHA1:

436ad6889b6e40d152a31ce0be29f6d2550437a7

Base64:

6a2M