Unicode Finder

"跾" U+8DFE(CJK UNIFIED IDEOGRAPH-8DFE)

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

Programming

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

Web

CSS
\008DFE
HtmlDecimal
跾
HtmlHexadecimal
跾
Url
%E8%B7%BE

Code

MD5
0619e424b6fc80836e4c864746ce45b6
Sha1
c819d98a1665470e42fac2547c29fd23ef6b3558
Base64
6Le+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DFE';
console.log(char);  // Output: 跾

Java:

char c = '\u8DFE';
System.out.println(c);  // Output: 跾

JSON:

{"text": "\u8DFE"}  // Value: 跾

Python:

char = '\u8DFE'
print(char)  # Output: 跾

Perl:

my $char = "\x{8DFE}";
print $char;  # Output: 跾

PHP:

$char = "\x{8DFE}";
echo $char;  // Output: 跾

Ruby:

char = "\u{8DFE}"
puts char  # Output: 跾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36350;</p>  <!-- Display: 跾 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DFE;</p>  <!-- Display: 跾 -->

URL Encoding:

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

Encodings

MD5:

0619e424b6fc80836e4c864746ce45b6

SHA1:

c819d98a1665470e42fac2547c29fd23ef6b3558

Base64:

6Le+