Unicode Finder

"跌" U+8DCC(CJK UNIFIED IDEOGRAPH-8DCC)

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

Programming

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

Web

CSS
\008DCC
HtmlDecimal
跌
HtmlHexadecimal
跌
Url
%E8%B7%8C

Code

MD5
a32959c299113f77c1bc0d8f24c4e4d3
Sha1
9bd65ae2227ed6197fc6f2bfc56409da55e1d9fb
Base64
6LeM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DCC';
console.log(char);  // Output: 跌

Java:

char c = '\u8DCC';
System.out.println(c);  // Output: 跌

JSON:

{"text": "\u8DCC"}  // Value: 跌

Python:

char = '\u8DCC'
print(char)  # Output: 跌

Perl:

my $char = "\x{8DCC}";
print $char;  # Output: 跌

PHP:

$char = "\x{8DCC}";
echo $char;  // Output: 跌

Ruby:

char = "\u{8DCC}"
puts char  # Output: 跌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36300;</p>  <!-- Display: 跌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DCC;</p>  <!-- Display: 跌 -->

URL Encoding:

// 跌 URL encoding
https://unicodefinder.com/search.php?query=%E8%B7%8C

Encodings

MD5:

a32959c299113f77c1bc0d8f24c4e4d3

SHA1:

9bd65ae2227ed6197fc6f2bfc56409da55e1d9fb

Base64:

6LeM