Unicode Finder

"貈" U+8C88(CJK UNIFIED IDEOGRAPH-8C88)

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

Programming

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

Web

CSS
\008C88
HtmlDecimal
貈
HtmlHexadecimal
貈
Url
%E8%B2%88

Code

MD5
44a036bb10785e8f522a0f54b1f9cfb0
Sha1
567542febf44af7cd2fe0c768a398cd0192a0007
Base64
6LKI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C88';
console.log(char);  // Output: 貈

Java:

char c = '\u8C88';
System.out.println(c);  // Output: 貈

JSON:

{"text": "\u8C88"}  // Value: 貈

Python:

char = '\u8C88'
print(char)  # Output: 貈

Perl:

my $char = "\x{8C88}";
print $char;  # Output: 貈

PHP:

$char = "\x{8C88}";
echo $char;  // Output: 貈

Ruby:

char = "\u{8C88}"
puts char  # Output: 貈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35976;</p>  <!-- Display: 貈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C88;</p>  <!-- Display: 貈 -->

URL Encoding:

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

Encodings

MD5:

44a036bb10785e8f522a0f54b1f9cfb0

SHA1:

567542febf44af7cd2fe0c768a398cd0192a0007

Base64:

6LKI