Unicode Finder

"跢" U+8DE2(CJK UNIFIED IDEOGRAPH-8DE2)

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

Programming

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

Web

CSS
\008DE2
HtmlDecimal
跢
HtmlHexadecimal
跢
Url
%E8%B7%A2

Code

MD5
73f94ea37f6cff454ddc3cecbb125e40
Sha1
78cec4a98be37ec802d2ea987ba6736e9a008bb2
Base64
6Lei

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DE2';
console.log(char);  // Output: 跢

Java:

char c = '\u8DE2';
System.out.println(c);  // Output: 跢

JSON:

{"text": "\u8DE2"}  // Value: 跢

Python:

char = '\u8DE2'
print(char)  # Output: 跢

Perl:

my $char = "\x{8DE2}";
print $char;  # Output: 跢

PHP:

$char = "\x{8DE2}";
echo $char;  // Output: 跢

Ruby:

char = "\u{8DE2}"
puts char  # Output: 跢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36322;</p>  <!-- Display: 跢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DE2;</p>  <!-- Display: 跢 -->

URL Encoding:

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

Encodings

MD5:

73f94ea37f6cff454ddc3cecbb125e40

SHA1:

78cec4a98be37ec802d2ea987ba6736e9a008bb2

Base64:

6Lei