Unicode Finder

"跀" U+8DC0(CJK UNIFIED IDEOGRAPH-8DC0)

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

Programming

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

Web

CSS
\008DC0
HtmlDecimal
跀
HtmlHexadecimal
跀
Url
%E8%B7%80

Code

MD5
7a80d4e814571f7b2a6c6889af18b6a5
Sha1
e2d55bf10bf2d1a43665261f0ab8ea2c349cafc4
Base64
6LeA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DC0';
console.log(char);  // Output: 跀

Java:

char c = '\u8DC0';
System.out.println(c);  // Output: 跀

JSON:

{"text": "\u8DC0"}  // Value: 跀

Python:

char = '\u8DC0'
print(char)  # Output: 跀

Perl:

my $char = "\x{8DC0}";
print $char;  # Output: 跀

PHP:

$char = "\x{8DC0}";
echo $char;  // Output: 跀

Ruby:

char = "\u{8DC0}"
puts char  # Output: 跀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36288;</p>  <!-- Display: 跀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DC0;</p>  <!-- Display: 跀 -->

URL Encoding:

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

Encodings

MD5:

7a80d4e814571f7b2a6c6889af18b6a5

SHA1:

e2d55bf10bf2d1a43665261f0ab8ea2c349cafc4

Base64:

6LeA