Unicode Finder

"貦" U+8CA6(CJK UNIFIED IDEOGRAPH-8CA6)

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

Programming

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

Web

CSS
\008CA6
HtmlDecimal
貦
HtmlHexadecimal
貦
Url
%E8%B2%A6

Code

MD5
d67334485f1eda5629262fa71a9cac06
Sha1
37c4e1a7106137a49b1fed495517473c535683bc
Base64
6LKm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CA6';
console.log(char);  // Output: 貦

Java:

char c = '\u8CA6';
System.out.println(c);  // Output: 貦

JSON:

{"text": "\u8CA6"}  // Value: 貦

Python:

char = '\u8CA6'
print(char)  # Output: 貦

Perl:

my $char = "\x{8CA6}";
print $char;  # Output: 貦

PHP:

$char = "\x{8CA6}";
echo $char;  // Output: 貦

Ruby:

char = "\u{8CA6}"
puts char  # Output: 貦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36006;</p>  <!-- Display: 貦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CA6;</p>  <!-- Display: 貦 -->

URL Encoding:

// 貦 URL encoding
https://unicodefinder.com/search.php?query=%E8%B2%A6

Encodings

MD5:

d67334485f1eda5629262fa71a9cac06

SHA1:

37c4e1a7106137a49b1fed495517473c535683bc

Base64:

6LKm