Unicode Finder

"趯" U+8DAF(CJK UNIFIED IDEOGRAPH-8DAF)

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

Programming

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

Web

CSS
\008DAF
HtmlDecimal
趯
HtmlHexadecimal
趯
Url
%E8%B6%AF

Code

MD5
7714098f152fe965e640d39d5eb7e246
Sha1
cefb5e75c1597ffe4b6c898c4fa029e4bd12c2ec
Base64
6Lav

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DAF';
console.log(char);  // Output: 趯

Java:

char c = '\u8DAF';
System.out.println(c);  // Output: 趯

JSON:

{"text": "\u8DAF"}  // Value: 趯

Python:

char = '\u8DAF'
print(char)  # Output: 趯

Perl:

my $char = "\x{8DAF}";
print $char;  # Output: 趯

PHP:

$char = "\x{8DAF}";
echo $char;  // Output: 趯

Ruby:

char = "\u{8DAF}"
puts char  # Output: 趯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36271;</p>  <!-- Display: 趯 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DAF;</p>  <!-- Display: 趯 -->

URL Encoding:

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

Encodings

MD5:

7714098f152fe965e640d39d5eb7e246

SHA1:

cefb5e75c1597ffe4b6c898c4fa029e4bd12c2ec

Base64:

6Lav