Unicode Finder

"贔" U+8D14(CJK UNIFIED IDEOGRAPH-8D14)

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

Programming

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

Web

CSS
\008D14
HtmlDecimal
贔
HtmlHexadecimal
贔
Url
%E8%B4%94

Code

MD5
04b359753ca8ec734068f0793ebbdf62
Sha1
5c94c8ff1a8accfbd56d53969771590c391c6048
Base64
6LSU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8D14';
console.log(char);  // Output: 贔

Java:

char c = '\u8D14';
System.out.println(c);  // Output: 贔

JSON:

{"text": "\u8D14"}  // Value: 贔

Python:

char = '\u8D14'
print(char)  # Output: 贔

Perl:

my $char = "\x{8D14}";
print $char;  # Output: 贔

PHP:

$char = "\x{8D14}";
echo $char;  // Output: 贔

Ruby:

char = "\u{8D14}"
puts char  # Output: 贔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36116;</p>  <!-- Display: 贔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D14;</p>  <!-- Display: 贔 -->

URL Encoding:

// 贔 URL encoding
https://unicodefinder.com/search.php?query=%E8%B4%94

Encodings

MD5:

04b359753ca8ec734068f0793ebbdf62

SHA1:

5c94c8ff1a8accfbd56d53969771590c391c6048

Base64:

6LSU