Unicode Finder

"貤" U+8CA4(CJK UNIFIED IDEOGRAPH-8CA4)

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

Programming

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

Web

CSS
\008CA4
HtmlDecimal
貤
HtmlHexadecimal
貤
Url
%E8%B2%A4

Code

MD5
710844ae01cc2aaa1c32c7dbfb197f7d
Sha1
fd79e9bad27e86da0d3985f8b721e8da9aa15630
Base64
6LKk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CA4';
console.log(char);  // Output: 貤

Java:

char c = '\u8CA4';
System.out.println(c);  // Output: 貤

JSON:

{"text": "\u8CA4"}  // Value: 貤

Python:

char = '\u8CA4'
print(char)  # Output: 貤

Perl:

my $char = "\x{8CA4}";
print $char;  # Output: 貤

PHP:

$char = "\x{8CA4}";
echo $char;  // Output: 貤

Ruby:

char = "\u{8CA4}"
puts char  # Output: 貤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36004;</p>  <!-- Display: 貤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CA4;</p>  <!-- Display: 貤 -->

URL Encoding:

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

Encodings

MD5:

710844ae01cc2aaa1c32c7dbfb197f7d

SHA1:

fd79e9bad27e86da0d3985f8b721e8da9aa15630

Base64:

6LKk