Unicode Finder

"魇" U+9B47(CJK UNIFIED IDEOGRAPH-9B47)

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

Programming

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

Web

CSS
\009B47
HtmlDecimal
魇
HtmlHexadecimal
魇
Url
%E9%AD%87

Code

MD5
4c0d1bcfb2df6bac2110aa6cfb66b629
Sha1
11fe324434119c095112e7dcb5b606f028143947
Base64
6a2H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B47';
console.log(char);  // Output: 魇

Java:

char c = '\u9B47';
System.out.println(c);  // Output: 魇

JSON:

{"text": "\u9B47"}  // Value: 魇

Python:

char = '\u9B47'
print(char)  # Output: 魇

Perl:

my $char = "\x{9B47}";
print $char;  # Output: 魇

PHP:

$char = "\x{9B47}";
echo $char;  // Output: 魇

Ruby:

char = "\u{9B47}"
puts char  # Output: 魇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39751;</p>  <!-- Display: 魇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B47;</p>  <!-- Display: 魇 -->

URL Encoding:

// 魇 URL encoding
https://unicodefinder.com/search.php?query=%E9%AD%87

Encodings

MD5:

4c0d1bcfb2df6bac2110aa6cfb66b629

SHA1:

11fe324434119c095112e7dcb5b606f028143947

Base64:

6a2H