Unicode Finder

"貙" U+8C99(CJK UNIFIED IDEOGRAPH-8C99)

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

Programming

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

Web

CSS
\008C99
HtmlDecimal
貙
HtmlHexadecimal
貙
Url
%E8%B2%99

Code

MD5
04ffd62dd40e570410ac508858aeb1b9
Sha1
0e288c47a0f03807014432f2be60431a6a6a062c
Base64
6LKZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C99';
console.log(char);  // Output: 貙

Java:

char c = '\u8C99';
System.out.println(c);  // Output: 貙

JSON:

{"text": "\u8C99"}  // Value: 貙

Python:

char = '\u8C99'
print(char)  # Output: 貙

Perl:

my $char = "\x{8C99}";
print $char;  # Output: 貙

PHP:

$char = "\x{8C99}";
echo $char;  // Output: 貙

Ruby:

char = "\u{8C99}"
puts char  # Output: 貙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35993;</p>  <!-- Display: 貙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C99;</p>  <!-- Display: 貙 -->

URL Encoding:

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

Encodings

MD5:

04ffd62dd40e570410ac508858aeb1b9

SHA1:

0e288c47a0f03807014432f2be60431a6a6a062c

Base64:

6LKZ