Unicode Finder

"跈" U+8DC8(CJK UNIFIED IDEOGRAPH-8DC8)

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

Programming

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

Web

CSS
\008DC8
HtmlDecimal
跈
HtmlHexadecimal
跈
Url
%E8%B7%88

Code

MD5
8d497df47e194869836e8eb4cad0b9c9
Sha1
3750223607b32d5ccc8db0bd2194989835168f23
Base64
6LeI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DC8';
console.log(char);  // Output: 跈

Java:

char c = '\u8DC8';
System.out.println(c);  // Output: 跈

JSON:

{"text": "\u8DC8"}  // Value: 跈

Python:

char = '\u8DC8'
print(char)  # Output: 跈

Perl:

my $char = "\x{8DC8}";
print $char;  # Output: 跈

PHP:

$char = "\x{8DC8}";
echo $char;  // Output: 跈

Ruby:

char = "\u{8DC8}"
puts char  # Output: 跈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36296;</p>  <!-- Display: 跈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DC8;</p>  <!-- Display: 跈 -->

URL Encoding:

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

Encodings

MD5:

8d497df47e194869836e8eb4cad0b9c9

SHA1:

3750223607b32d5ccc8db0bd2194989835168f23

Base64:

6LeI