Unicode Finder

"酄" U+9144(CJK UNIFIED IDEOGRAPH-9144)

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

Programming

C
\u9144
JavaScript
\u9144
Java
\u9144
Json
\u9144
Python
\u9144
Perl
\x{9144}
PHP
\x{9144}
Ruby
\u{9144}
Rust
\u{9144}
Go
\u9144

Web

CSS
\009144
HtmlDecimal
酄
HtmlHexadecimal
酄
Url
%E9%85%84

Code

MD5
888ae8a1d503159fc4558dfa408ee7c7
Sha1
82922e4ed4b45683f036b1e0e5c50e2ee2fab9f1
Base64
6YWE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9144';
console.log(char);  // Output: 酄

Java:

char c = '\u9144';
System.out.println(c);  // Output: 酄

JSON:

{"text": "\u9144"}  // Value: 酄

Python:

char = '\u9144'
print(char)  # Output: 酄

Perl:

my $char = "\x{9144}";
print $char;  # Output: 酄

PHP:

$char = "\x{9144}";
echo $char;  // Output: 酄

Ruby:

char = "\u{9144}"
puts char  # Output: 酄

Rust:

let c = '\u{9144}';
println!("{}", c);  // Output: 酄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009144";  /* Display: 酄 */
}

HTML Decimal:

<p>HTML decimal: &#37188;</p>  <!-- Display: 酄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9144;</p>  <!-- Display: 酄 -->

URL Encoding:

// 酄 URL encoding
https://unicodefinder.com/search.php?query=%E9%85%84

Encodings

MD5:

888ae8a1d503159fc4558dfa408ee7c7

SHA1:

82922e4ed4b45683f036b1e0e5c50e2ee2fab9f1

Base64:

6YWE