Unicode Finder

"跁" U+8DC1(CJK UNIFIED IDEOGRAPH-8DC1)

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

Programming

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

Web

CSS
\008DC1
HtmlDecimal
跁
HtmlHexadecimal
跁
Url
%E8%B7%81

Code

MD5
cb22d8412a33f8309c2b27102c3a53b9
Sha1
c393f307c24d720283c60bd0e4c041ad96abe489
Base64
6LeB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DC1';
console.log(char);  // Output: 跁

Java:

char c = '\u8DC1';
System.out.println(c);  // Output: 跁

JSON:

{"text": "\u8DC1"}  // Value: 跁

Python:

char = '\u8DC1'
print(char)  # Output: 跁

Perl:

my $char = "\x{8DC1}";
print $char;  # Output: 跁

PHP:

$char = "\x{8DC1}";
echo $char;  // Output: 跁

Ruby:

char = "\u{8DC1}"
puts char  # Output: 跁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36289;</p>  <!-- Display: 跁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DC1;</p>  <!-- Display: 跁 -->

URL Encoding:

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

Encodings

MD5:

cb22d8412a33f8309c2b27102c3a53b9

SHA1:

c393f307c24d720283c60bd0e4c041ad96abe489

Base64:

6LeB