Unicode Finder

"跷" U+8DF7(CJK UNIFIED IDEOGRAPH-8DF7)

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

Programming

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

Web

CSS
\008DF7
HtmlDecimal
跷
HtmlHexadecimal
跷
Url
%E8%B7%B7

Code

MD5
d738ae4c3094fb727e780f29cf259676
Sha1
01b1c6225ad603a023431d2ba4b46223e178c52a
Base64
6Le3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DF7';
console.log(char);  // Output: 跷

Java:

char c = '\u8DF7';
System.out.println(c);  // Output: 跷

JSON:

{"text": "\u8DF7"}  // Value: 跷

Python:

char = '\u8DF7'
print(char)  # Output: 跷

Perl:

my $char = "\x{8DF7}";
print $char;  # Output: 跷

PHP:

$char = "\x{8DF7}";
echo $char;  // Output: 跷

Ruby:

char = "\u{8DF7}"
puts char  # Output: 跷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36343;</p>  <!-- Display: 跷 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DF7;</p>  <!-- Display: 跷 -->

URL Encoding:

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

Encodings

MD5:

d738ae4c3094fb727e780f29cf259676

SHA1:

01b1c6225ad603a023431d2ba4b46223e178c52a

Base64:

6Le3