Unicode Finder

"趾" U+8DBE(CJK UNIFIED IDEOGRAPH-8DBE)

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

Programming

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

Web

CSS
\008DBE
HtmlDecimal
趾
HtmlHexadecimal
趾
Url
%E8%B6%BE

Code

MD5
a8c59a9ee0a7e22b9b44146fa1a9ee2d
Sha1
0924d29d55bcde2d2f92f3c2f1aa231699fbf96e
Base64
6La+

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DBE';
console.log(char);  // Output: 趾

Java:

char c = '\u8DBE';
System.out.println(c);  // Output: 趾

JSON:

{"text": "\u8DBE"}  // Value: 趾

Python:

char = '\u8DBE'
print(char)  # Output: 趾

Perl:

my $char = "\x{8DBE}";
print $char;  # Output: 趾

PHP:

$char = "\x{8DBE}";
echo $char;  // Output: 趾

Ruby:

char = "\u{8DBE}"
puts char  # Output: 趾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36286;</p>  <!-- Display: 趾 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DBE;</p>  <!-- Display: 趾 -->

URL Encoding:

// 趾 URL encoding
https://unicodefinder.com/search.php?query=%E8%B6%BE

Encodings

MD5:

a8c59a9ee0a7e22b9b44146fa1a9ee2d

SHA1:

0924d29d55bcde2d2f92f3c2f1aa231699fbf96e

Base64:

6La+