Unicode Finder

"跽" U+8DFD(CJK UNIFIED IDEOGRAPH-8DFD)

U+8DFD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8DFD

Programming

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

Web

CSS
\008DFD
HtmlDecimal
跽
HtmlHexadecimal
跽
Url
%E8%B7%BD

Code

MD5
b090aab8f3da4de369b0c05dab7fdd65
Sha1
7fc8de7fff81433502e559843b525bf971aa8f19
Base64
6Le9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DFD';
console.log(char);  // Output: 跽

Java:

char c = '\u8DFD';
System.out.println(c);  // Output: 跽

JSON:

{"text": "\u8DFD"}  // Value: 跽

Python:

char = '\u8DFD'
print(char)  # Output: 跽

Perl:

my $char = "\x{8DFD}";
print $char;  # Output: 跽

PHP:

$char = "\x{8DFD}";
echo $char;  // Output: 跽

Ruby:

char = "\u{8DFD}"
puts char  # Output: 跽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36349;</p>  <!-- Display: 跽 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DFD;</p>  <!-- Display: 跽 -->

URL Encoding:

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

Encodings

MD5:

b090aab8f3da4de369b0c05dab7fdd65

SHA1:

7fc8de7fff81433502e559843b525bf971aa8f19

Base64:

6Le9