Unicode Finder

"覬" U+89AC(CJK UNIFIED IDEOGRAPH-89AC)

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

Programming

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

Web

CSS
\0089AC
HtmlDecimal
覬
HtmlHexadecimal
覬
Url
%E8%A6%AC

Code

MD5
244bd831628c61319fe9d11a7f569152
Sha1
b060beb11aa975d229cc33f467297a00812112cd
Base64
6Kas

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u89AC';
console.log(char);  // Output: 覬

Java:

char c = '\u89AC';
System.out.println(c);  // Output: 覬

JSON:

{"text": "\u89AC"}  // Value: 覬

Python:

char = '\u89AC'
print(char)  # Output: 覬

Perl:

my $char = "\x{89AC}";
print $char;  # Output: 覬

PHP:

$char = "\x{89AC}";
echo $char;  // Output: 覬

Ruby:

char = "\u{89AC}"
puts char  # Output: 覬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35244;</p>  <!-- Display: 覬 -->

HTML Hexadecimal:

<p>HTML hex: &#x89AC;</p>  <!-- Display: 覬 -->

URL Encoding:

// 覬 URL encoding
https://unicodefinder.com/search.php?query=%E8%A6%AC

Encodings

MD5:

244bd831628c61319fe9d11a7f569152

SHA1:

b060beb11aa975d229cc33f467297a00812112cd

Base64:

6Kas