Unicode Finder

"襂" U+8942(CJK UNIFIED IDEOGRAPH-8942)

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

Programming

C
\u8942
JavaScript
\u8942
Java
\u8942
Json
\u8942
Python
\u8942
Perl
\x{8942}
PHP
\x{8942}
Ruby
\u{8942}
Rust
\u{8942}
Go
\u8942

Web

CSS
\008942
HtmlDecimal
襂
HtmlHexadecimal
襂
Url
%E8%A5%82

Code

MD5
6c0ae6647c33d41fe5c837a9b6c4160f
Sha1
6bf016c921c6d36516b3f6c99bea00f8464e5f6b
Base64
6KWC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8942';
console.log(char);  // Output: 襂

Java:

char c = '\u8942';
System.out.println(c);  // Output: 襂

JSON:

{"text": "\u8942"}  // Value: 襂

Python:

char = '\u8942'
print(char)  # Output: 襂

Perl:

my $char = "\x{8942}";
print $char;  # Output: 襂

PHP:

$char = "\x{8942}";
echo $char;  // Output: 襂

Ruby:

char = "\u{8942}"
puts char  # Output: 襂

Rust:

let c = '\u{8942}';
println!("{}", c);  // Output: 襂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008942";  /* Display: 襂 */
}

HTML Decimal:

<p>HTML decimal: &#35138;</p>  <!-- Display: 襂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8942;</p>  <!-- Display: 襂 -->

URL Encoding:

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

Encodings

MD5:

6c0ae6647c33d41fe5c837a9b6c4160f

SHA1:

6bf016c921c6d36516b3f6c99bea00f8464e5f6b

Base64:

6KWC