Unicode Finder

"跞" U+8DDE(CJK UNIFIED IDEOGRAPH-8DDE)

U+8DDE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8DDE

Programming

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

Web

CSS
\008DDE
HtmlDecimal
跞
HtmlHexadecimal
跞
Url
%E8%B7%9E

Code

MD5
d74d89ccfd07e5d199e25c5531f79c01
Sha1
445e861774510c969491a1ee9a689e76c1f2f22e
Base64
6Lee

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DDE';
console.log(char);  // Output: 跞

Java:

char c = '\u8DDE';
System.out.println(c);  // Output: 跞

JSON:

{"text": "\u8DDE"}  // Value: 跞

Python:

char = '\u8DDE'
print(char)  # Output: 跞

Perl:

my $char = "\x{8DDE}";
print $char;  # Output: 跞

PHP:

$char = "\x{8DDE}";
echo $char;  // Output: 跞

Ruby:

char = "\u{8DDE}"
puts char  # Output: 跞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36318;</p>  <!-- Display: 跞 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DDE;</p>  <!-- Display: 跞 -->

URL Encoding:

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

Encodings

MD5:

d74d89ccfd07e5d199e25c5531f79c01

SHA1:

445e861774510c969491a1ee9a689e76c1f2f22e

Base64:

6Lee