Unicode Finder

"覝" U+899D(CJK UNIFIED IDEOGRAPH-899D)

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

Programming

C
\u899D
JavaScript
\u899D
Java
\u899D
Json
\u899D
Python
\u899D
Perl
\x{899D}
PHP
\x{899D}
Ruby
\u{899D}
Rust
\u{899D}
Go
\u899D

Web

CSS
\00899D
HtmlDecimal
覝
HtmlHexadecimal
覝
Url
%E8%A6%9D

Code

MD5
b6e4de569d8d4c53333c311756902f54
Sha1
2cde37f21fba9395ec9fee458e04698cc90feb04
Base64
6Kad

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u899D';
console.log(char);  // Output: 覝

Java:

char c = '\u899D';
System.out.println(c);  // Output: 覝

JSON:

{"text": "\u899D"}  // Value: 覝

Python:

char = '\u899D'
print(char)  # Output: 覝

Perl:

my $char = "\x{899D}";
print $char;  # Output: 覝

PHP:

$char = "\x{899D}";
echo $char;  // Output: 覝

Ruby:

char = "\u{899D}"
puts char  # Output: 覝

Rust:

let c = '\u{899D}';
println!("{}", c);  // Output: 覝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00899D";  /* Display: 覝 */
}

HTML Decimal:

<p>HTML decimal: &#35229;</p>  <!-- Display: 覝 -->

HTML Hexadecimal:

<p>HTML hex: &#x899D;</p>  <!-- Display: 覝 -->

URL Encoding:

// 覝 URL encoding
https://unicodefinder.com/search.php?query=%E8%A6%9D

Encodings

MD5:

b6e4de569d8d4c53333c311756902f54

SHA1:

2cde37f21fba9395ec9fee458e04698cc90feb04

Base64:

6Kad