Unicode Finder

"蒉" U+8489(CJK UNIFIED IDEOGRAPH-8489)

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

Programming

C
\u8489
JavaScript
\u8489
Java
\u8489
Json
\u8489
Python
\u8489
Perl
\x{8489}
PHP
\x{8489}
Ruby
\u{8489}
Rust
\u{8489}
Go
\u8489

Web

CSS
\008489
HtmlDecimal
蒉
HtmlHexadecimal
蒉
Url
%E8%92%89

Code

MD5
244f9c50bef10cc3ee16d01312f5d741
Sha1
3ba70bec7f96e0c475802b6f8822ea98f05ccacd
Base64
6JKJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8489';
console.log(char);  // Output: 蒉

Java:

char c = '\u8489';
System.out.println(c);  // Output: 蒉

JSON:

{"text": "\u8489"}  // Value: 蒉

Python:

char = '\u8489'
print(char)  # Output: 蒉

Perl:

my $char = "\x{8489}";
print $char;  # Output: 蒉

PHP:

$char = "\x{8489}";
echo $char;  // Output: 蒉

Ruby:

char = "\u{8489}"
puts char  # Output: 蒉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008489";  /* Display: 蒉 */
}

HTML Decimal:

<p>HTML decimal: &#33929;</p>  <!-- Display: 蒉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8489;</p>  <!-- Display: 蒉 -->

URL Encoding:

// 蒉 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%89

Encodings

MD5:

244f9c50bef10cc3ee16d01312f5d741

SHA1:

3ba70bec7f96e0c475802b6f8822ea98f05ccacd

Base64:

6JKJ