Unicode Finder

"貋" U+8C8B(CJK UNIFIED IDEOGRAPH-8C8B)

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

Programming

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

Web

CSS
\008C8B
HtmlDecimal
貋
HtmlHexadecimal
貋
Url
%E8%B2%8B

Code

MD5
e07fc39209a20c8e3c4d002524d7923c
Sha1
6218d5bf4ca91c20c04e83d871dd868c44d0a369
Base64
6LKL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C8B';
console.log(char);  // Output: 貋

Java:

char c = '\u8C8B';
System.out.println(c);  // Output: 貋

JSON:

{"text": "\u8C8B"}  // Value: 貋

Python:

char = '\u8C8B'
print(char)  # Output: 貋

Perl:

my $char = "\x{8C8B}";
print $char;  # Output: 貋

PHP:

$char = "\x{8C8B}";
echo $char;  // Output: 貋

Ruby:

char = "\u{8C8B}"
puts char  # Output: 貋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35979;</p>  <!-- Display: 貋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C8B;</p>  <!-- Display: 貋 -->

URL Encoding:

// 貋 URL encoding
https://unicodefinder.com/search.php?query=%E8%B2%8B

Encodings

MD5:

e07fc39209a20c8e3c4d002524d7923c

SHA1:

6218d5bf4ca91c20c04e83d871dd868c44d0a369

Base64:

6LKL