Unicode Finder

"跭" U+8DED(CJK UNIFIED IDEOGRAPH-8DED)

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

Programming

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

Web

CSS
\008DED
HtmlDecimal
跭
HtmlHexadecimal
跭
Url
%E8%B7%AD

Code

MD5
e7f10a5f8c503bc46a40ce77d359c669
Sha1
9e72199fd6f41cf544da784cd671a758025e9d8b
Base64
6Let

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DED';
console.log(char);  // Output: 跭

Java:

char c = '\u8DED';
System.out.println(c);  // Output: 跭

JSON:

{"text": "\u8DED"}  // Value: 跭

Python:

char = '\u8DED'
print(char)  # Output: 跭

Perl:

my $char = "\x{8DED}";
print $char;  # Output: 跭

PHP:

$char = "\x{8DED}";
echo $char;  // Output: 跭

Ruby:

char = "\u{8DED}"
puts char  # Output: 跭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36333;</p>  <!-- Display: 跭 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DED;</p>  <!-- Display: 跭 -->

URL Encoding:

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

Encodings

MD5:

e7f10a5f8c503bc46a40ce77d359c669

SHA1:

9e72199fd6f41cf544da784cd671a758025e9d8b

Base64:

6Let