Unicode Finder

"跿" U+8DFF(CJK UNIFIED IDEOGRAPH-8DFF)

跿
U+8DFF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8DFF

Programming

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

Web

CSS
\008DFF
HtmlDecimal
跿
HtmlHexadecimal
跿
Url
%E8%B7%BF

Code

MD5
9a42cf06b2125bf3bbaa93ff32874d50
Sha1
7abc53c9221c4f6a35c022d85f7d43dfbc8ca7d4
Base64
6Le/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DFF';
console.log(char);  // Output: 跿

Java:

char c = '\u8DFF';
System.out.println(c);  // Output: 跿

JSON:

{"text": "\u8DFF"}  // Value: 跿

Python:

char = '\u8DFF'
print(char)  # Output: 跿

Perl:

my $char = "\x{8DFF}";
print $char;  # Output: 跿

PHP:

$char = "\x{8DFF}";
echo $char;  // Output: 跿

Ruby:

char = "\u{8DFF}"
puts char  # Output: 跿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36351;</p>  <!-- Display: 跿 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DFF;</p>  <!-- Display: 跿 -->

URL Encoding:

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

Encodings

MD5:

9a42cf06b2125bf3bbaa93ff32874d50

SHA1:

7abc53c9221c4f6a35c022d85f7d43dfbc8ca7d4

Base64:

6Le/