Unicode Finder

"趤" U+8DA4(CJK UNIFIED IDEOGRAPH-8DA4)

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

Programming

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

Web

CSS
\008DA4
HtmlDecimal
趤
HtmlHexadecimal
趤
Url
%E8%B6%A4

Code

MD5
aeeab813821af9427735dafc2fd333b8
Sha1
f7ac0b9a449d0e8169a6e1901b09e72722858987
Base64
6Lak

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8DA4';
console.log(char);  // Output: 趤

Java:

char c = '\u8DA4';
System.out.println(c);  // Output: 趤

JSON:

{"text": "\u8DA4"}  // Value: 趤

Python:

char = '\u8DA4'
print(char)  # Output: 趤

Perl:

my $char = "\x{8DA4}";
print $char;  # Output: 趤

PHP:

$char = "\x{8DA4}";
echo $char;  // Output: 趤

Ruby:

char = "\u{8DA4}"
puts char  # Output: 趤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36260;</p>  <!-- Display: 趤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DA4;</p>  <!-- Display: 趤 -->

URL Encoding:

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

Encodings

MD5:

aeeab813821af9427735dafc2fd333b8

SHA1:

f7ac0b9a449d0e8169a6e1901b09e72722858987

Base64:

6Lak