Unicode Finder

"駘" U+99D8(CJK UNIFIED IDEOGRAPH-99D8)

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

Programming

C
\u99D8
JavaScript
\u99D8
Java
\u99D8
Json
\u99D8
Python
\u99D8
Perl
\x{99D8}
PHP
\x{99D8}
Ruby
\u{99D8}
Rust
\u{99D8}
Go
\u99D8

Web

CSS
\0099D8
HtmlDecimal
駘
HtmlHexadecimal
駘
Url
%E9%A7%98

Code

MD5
628b9568928bafadac9c1c8cf692b218
Sha1
00ddd764bb18e117acb1b3660747c05caf625927
Base64
6aeY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99D8';
console.log(char);  // Output: 駘

Java:

char c = '\u99D8';
System.out.println(c);  // Output: 駘

JSON:

{"text": "\u99D8"}  // Value: 駘

Python:

char = '\u99D8'
print(char)  # Output: 駘

Perl:

my $char = "\x{99D8}";
print $char;  # Output: 駘

PHP:

$char = "\x{99D8}";
echo $char;  // Output: 駘

Ruby:

char = "\u{99D8}"
puts char  # Output: 駘

Rust:

let c = '\u{99D8}';
println!("{}", c);  // Output: 駘

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0099D8";  /* Display: 駘 */
}

HTML Decimal:

<p>HTML decimal: &#39384;</p>  <!-- Display: 駘 -->

HTML Hexadecimal:

<p>HTML hex: &#x99D8;</p>  <!-- Display: 駘 -->

URL Encoding:

// 駘 URL encoding
https://unicodefinder.com/search.php?query=%E9%A7%98

Encodings

MD5:

628b9568928bafadac9c1c8cf692b218

SHA1:

00ddd764bb18e117acb1b3660747c05caf625927

Base64:

6aeY