Unicode Finder

"跶" U+8DF6(CJK UNIFIED IDEOGRAPH-8DF6)

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

Programming

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

Web

CSS
\008DF6
HtmlDecimal
跶
HtmlHexadecimal
跶
Url
%E8%B7%B6

Code

MD5
72e4d3c98139d7b2c0a27e3e31752fb4
Sha1
3cc4a24c8fdffa4e2b2e9291516b3ad2abb739f3
Base64
6Le2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DF6';
console.log(char);  // Output: 跶

Java:

char c = '\u8DF6';
System.out.println(c);  // Output: 跶

JSON:

{"text": "\u8DF6"}  // Value: 跶

Python:

char = '\u8DF6'
print(char)  # Output: 跶

Perl:

my $char = "\x{8DF6}";
print $char;  # Output: 跶

PHP:

$char = "\x{8DF6}";
echo $char;  // Output: 跶

Ruby:

char = "\u{8DF6}"
puts char  # Output: 跶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36342;</p>  <!-- Display: 跶 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DF6;</p>  <!-- Display: 跶 -->

URL Encoding:

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

Encodings

MD5:

72e4d3c98139d7b2c0a27e3e31752fb4

SHA1:

3cc4a24c8fdffa4e2b2e9291516b3ad2abb739f3

Base64:

6Le2