Unicode Finder

"跳" U+8DF3(CJK UNIFIED IDEOGRAPH-8DF3)

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

Programming

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

Web

CSS
\008DF3
HtmlDecimal
跳
HtmlHexadecimal
跳
Url
%E8%B7%B3

Code

MD5
f4965ce10c943000192e844330466c4d
Sha1
8449cf0cf425dfca043999a69a353762eb3dd089
Base64
6Lez

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DF3';
console.log(char);  // Output: 跳

Java:

char c = '\u8DF3';
System.out.println(c);  // Output: 跳

JSON:

{"text": "\u8DF3"}  // Value: 跳

Python:

char = '\u8DF3'
print(char)  # Output: 跳

Perl:

my $char = "\x{8DF3}";
print $char;  # Output: 跳

PHP:

$char = "\x{8DF3}";
echo $char;  // Output: 跳

Ruby:

char = "\u{8DF3}"
puts char  # Output: 跳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36339;</p>  <!-- Display: 跳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DF3;</p>  <!-- Display: 跳 -->

URL Encoding:

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

Encodings

MD5:

f4965ce10c943000192e844330466c4d

SHA1:

8449cf0cf425dfca043999a69a353762eb3dd089

Base64:

6Lez