Unicode Finder

"跼" U+8DFC(CJK UNIFIED IDEOGRAPH-8DFC)

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

Programming

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

Web

CSS
\008DFC
HtmlDecimal
跼
HtmlHexadecimal
跼
Url
%E8%B7%BC

Code

MD5
15a1790ea74c5d9fb1e581e5995268f1
Sha1
e0747b532b42ad78b626e4d91951abbea1bff8de
Base64
6Le8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DFC';
console.log(char);  // Output: 跼

Java:

char c = '\u8DFC';
System.out.println(c);  // Output: 跼

JSON:

{"text": "\u8DFC"}  // Value: 跼

Python:

char = '\u8DFC'
print(char)  # Output: 跼

Perl:

my $char = "\x{8DFC}";
print $char;  # Output: 跼

PHP:

$char = "\x{8DFC}";
echo $char;  // Output: 跼

Ruby:

char = "\u{8DFC}"
puts char  # Output: 跼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36348;</p>  <!-- Display: 跼 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DFC;</p>  <!-- Display: 跼 -->

URL Encoding:

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

Encodings

MD5:

15a1790ea74c5d9fb1e581e5995268f1

SHA1:

e0747b532b42ad78b626e4d91951abbea1bff8de

Base64:

6Le8