Unicode Finder

"豂" U+8C42(CJK UNIFIED IDEOGRAPH-8C42)

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

Programming

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

Web

CSS
\008C42
HtmlDecimal
豂
HtmlHexadecimal
豂
Url
%E8%B1%82

Code

MD5
551349a5e7b6ec6d8d09b070991d2922
Sha1
13b32cf90946ae72d88bf6102c95afc65cce51b1
Base64
6LGC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C42';
console.log(char);  // Output: 豂

Java:

char c = '\u8C42';
System.out.println(c);  // Output: 豂

JSON:

{"text": "\u8C42"}  // Value: 豂

Python:

char = '\u8C42'
print(char)  # Output: 豂

Perl:

my $char = "\x{8C42}";
print $char;  # Output: 豂

PHP:

$char = "\x{8C42}";
echo $char;  // Output: 豂

Ruby:

char = "\u{8C42}"
puts char  # Output: 豂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35906;</p>  <!-- Display: 豂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C42;</p>  <!-- Display: 豂 -->

URL Encoding:

// 豂 URL encoding
https://unicodefinder.com/search.php?query=%E8%B1%82

Encodings

MD5:

551349a5e7b6ec6d8d09b070991d2922

SHA1:

13b32cf90946ae72d88bf6102c95afc65cce51b1

Base64:

6LGC