Unicode Finder

"駉" U+99C9(CJK UNIFIED IDEOGRAPH-99C9)

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

Programming

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

Web

CSS
\0099C9
HtmlDecimal
駉
HtmlHexadecimal
駉
Url
%E9%A7%89

Code

MD5
a16fed0bbef90a848b461505af2f664b
Sha1
94cfc3c8853dfb5cc79c40c2c4ad579bdccb939b
Base64
6aeJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99C9';
console.log(char);  // Output: 駉

Java:

char c = '\u99C9';
System.out.println(c);  // Output: 駉

JSON:

{"text": "\u99C9"}  // Value: 駉

Python:

char = '\u99C9'
print(char)  # Output: 駉

Perl:

my $char = "\x{99C9}";
print $char;  # Output: 駉

PHP:

$char = "\x{99C9}";
echo $char;  // Output: 駉

Ruby:

char = "\u{99C9}"
puts char  # Output: 駉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39369;</p>  <!-- Display: 駉 -->

HTML Hexadecimal:

<p>HTML hex: &#x99C9;</p>  <!-- Display: 駉 -->

URL Encoding:

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

Encodings

MD5:

a16fed0bbef90a848b461505af2f664b

SHA1:

94cfc3c8853dfb5cc79c40c2c4ad579bdccb939b

Base64:

6aeJ