Unicode Finder

"跲" U+8DF2(CJK UNIFIED IDEOGRAPH-8DF2)

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

Programming

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

Web

CSS
\008DF2
HtmlDecimal
跲
HtmlHexadecimal
跲
Url
%E8%B7%B2

Code

MD5
fbc9099364a0b61afa6bf22d1eb13287
Sha1
4cce022e77ae46ba3813462c15c141f09e51759d
Base64
6Ley

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DF2';
console.log(char);  // Output: 跲

Java:

char c = '\u8DF2';
System.out.println(c);  // Output: 跲

JSON:

{"text": "\u8DF2"}  // Value: 跲

Python:

char = '\u8DF2'
print(char)  # Output: 跲

Perl:

my $char = "\x{8DF2}";
print $char;  # Output: 跲

PHP:

$char = "\x{8DF2}";
echo $char;  // Output: 跲

Ruby:

char = "\u{8DF2}"
puts char  # Output: 跲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36338;</p>  <!-- Display: 跲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DF2;</p>  <!-- Display: 跲 -->

URL Encoding:

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

Encodings

MD5:

fbc9099364a0b61afa6bf22d1eb13287

SHA1:

4cce022e77ae46ba3813462c15c141f09e51759d

Base64:

6Ley