Unicode Finder

"觌" U+89CC(CJK UNIFIED IDEOGRAPH-89CC)

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

Programming

C
\u89CC
JavaScript
\u89CC
Java
\u89CC
Json
\u89CC
Python
\u89CC
Perl
\x{89CC}
PHP
\x{89CC}
Ruby
\u{89CC}
Rust
\u{89CC}
Go
\u89CC

Web

CSS
\0089CC
HtmlDecimal
觌
HtmlHexadecimal
觌
Url
%E8%A7%8C

Code

MD5
bde17edf7496148872866700d45a1233
Sha1
e4af0417cb3515acf291f1631ab608f60a8acfcb
Base64
6KeM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u89CC';
console.log(char);  // Output: 觌

Java:

char c = '\u89CC';
System.out.println(c);  // Output: 觌

JSON:

{"text": "\u89CC"}  // Value: 觌

Python:

char = '\u89CC'
print(char)  # Output: 觌

Perl:

my $char = "\x{89CC}";
print $char;  # Output: 觌

PHP:

$char = "\x{89CC}";
echo $char;  // Output: 觌

Ruby:

char = "\u{89CC}"
puts char  # Output: 觌

Rust:

let c = '\u{89CC}';
println!("{}", c);  // Output: 觌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0089CC";  /* Display: 觌 */
}

HTML Decimal:

<p>HTML decimal: &#35276;</p>  <!-- Display: 觌 -->

HTML Hexadecimal:

<p>HTML hex: &#x89CC;</p>  <!-- Display: 觌 -->

URL Encoding:

// 觌 URL encoding
https://unicodefinder.com/search.php?query=%E8%A7%8C

Encodings

MD5:

bde17edf7496148872866700d45a1233

SHA1:

e4af0417cb3515acf291f1631ab608f60a8acfcb

Base64:

6KeM