Unicode Finder

"鞉" U+9789(CJK UNIFIED IDEOGRAPH-9789)

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

Programming

C
\u9789
JavaScript
\u9789
Java
\u9789
Json
\u9789
Python
\u9789
Perl
\x{9789}
PHP
\x{9789}
Ruby
\u{9789}
Rust
\u{9789}
Go
\u9789

Web

CSS
\009789
HtmlDecimal
鞉
HtmlHexadecimal
鞉
Url
%E9%9E%89

Code

MD5
4a89f65e869941da1fa585048b33ccf6
Sha1
222812c55c9850b5163cb797ef6a13883dbefc9f
Base64
6Z6J

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9789';
console.log(char);  // Output: 鞉

Java:

char c = '\u9789';
System.out.println(c);  // Output: 鞉

JSON:

{"text": "\u9789"}  // Value: 鞉

Python:

char = '\u9789'
print(char)  # Output: 鞉

Perl:

my $char = "\x{9789}";
print $char;  # Output: 鞉

PHP:

$char = "\x{9789}";
echo $char;  // Output: 鞉

Ruby:

char = "\u{9789}"
puts char  # Output: 鞉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009789";  /* Display: 鞉 */
}

HTML Decimal:

<p>HTML decimal: &#38793;</p>  <!-- Display: 鞉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9789;</p>  <!-- Display: 鞉 -->

URL Encoding:

// 鞉 URL encoding
https://unicodefinder.com/search.php?query=%E9%9E%89

Encodings

MD5:

4a89f65e869941da1fa585048b33ccf6

SHA1:

222812c55c9850b5163cb797ef6a13883dbefc9f

Base64:

6Z6J