Unicode Finder

"跉" U+8DC9(CJK UNIFIED IDEOGRAPH-8DC9)

U+8DC9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8DC9

Programming

C
\u8DC9
JavaScript
\u8DC9
Java
\u8DC9
Json
\u8DC9
Python
\u8DC9
Perl
\x{8DC9}
PHP
\x{8DC9}
Ruby
\u{8DC9}
Rust
\u{8DC9}
Go
\u8DC9

Web

CSS
\008DC9
HtmlDecimal
跉
HtmlHexadecimal
跉
Url
%E8%B7%89

Code

MD5
7d70638fc8a935151213b001379f142c
Sha1
90b4bfb2d63482af6c0f1a09eac7bae4d7e582ad
Base64
6LeJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DC9';
console.log(char);  // Output: 跉

Java:

char c = '\u8DC9';
System.out.println(c);  // Output: 跉

JSON:

{"text": "\u8DC9"}  // Value: 跉

Python:

char = '\u8DC9'
print(char)  # Output: 跉

Perl:

my $char = "\x{8DC9}";
print $char;  # Output: 跉

PHP:

$char = "\x{8DC9}";
echo $char;  // Output: 跉

Ruby:

char = "\u{8DC9}"
puts char  # Output: 跉

Rust:

let c = '\u{8DC9}';
println!("{}", c);  // Output: 跉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008DC9";  /* Display: 跉 */
}

HTML Decimal:

<p>HTML decimal: &#36297;</p>  <!-- Display: 跉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DC9;</p>  <!-- Display: 跉 -->

URL Encoding:

// 跉 URL encoding
https://unicodefinder.com/search.php?query=%E8%B7%89

Encodings

MD5:

7d70638fc8a935151213b001379f142c

SHA1:

90b4bfb2d63482af6c0f1a09eac7bae4d7e582ad

Base64:

6LeJ