Unicode Finder

"跧" U+8DE7(CJK UNIFIED IDEOGRAPH-8DE7)

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

Programming

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

Web

CSS
\008DE7
HtmlDecimal
跧
HtmlHexadecimal
跧
Url
%E8%B7%A7

Code

MD5
d68facf02faf5a80e1b534effdd291c9
Sha1
de56f0f8a36e388556d78b3b338e2d80f50cddb7
Base64
6Len

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DE7';
console.log(char);  // Output: 跧

Java:

char c = '\u8DE7';
System.out.println(c);  // Output: 跧

JSON:

{"text": "\u8DE7"}  // Value: 跧

Python:

char = '\u8DE7'
print(char)  # Output: 跧

Perl:

my $char = "\x{8DE7}";
print $char;  # Output: 跧

PHP:

$char = "\x{8DE7}";
echo $char;  // Output: 跧

Ruby:

char = "\u{8DE7}"
puts char  # Output: 跧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36327;</p>  <!-- Display: 跧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DE7;</p>  <!-- Display: 跧 -->

URL Encoding:

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

Encodings

MD5:

d68facf02faf5a80e1b534effdd291c9

SHA1:

de56f0f8a36e388556d78b3b338e2d80f50cddb7

Base64:

6Len