Unicode Finder

"襀" U+8940(CJK UNIFIED IDEOGRAPH-8940)

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

Programming

C
\u8940
JavaScript
\u8940
Java
\u8940
Json
\u8940
Python
\u8940
Perl
\x{8940}
PHP
\x{8940}
Ruby
\u{8940}
Rust
\u{8940}
Go
\u8940

Web

CSS
\008940
HtmlDecimal
襀
HtmlHexadecimal
襀
Url
%E8%A5%80

Code

MD5
76bceeb4b513472460139dca9a6de8d3
Sha1
5d182fae94299530d8356b845d574b20e190443c
Base64
6KWA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8940';
console.log(char);  // Output: 襀

Java:

char c = '\u8940';
System.out.println(c);  // Output: 襀

JSON:

{"text": "\u8940"}  // Value: 襀

Python:

char = '\u8940'
print(char)  # Output: 襀

Perl:

my $char = "\x{8940}";
print $char;  # Output: 襀

PHP:

$char = "\x{8940}";
echo $char;  // Output: 襀

Ruby:

char = "\u{8940}"
puts char  # Output: 襀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008940";  /* Display: 襀 */
}

HTML Decimal:

<p>HTML decimal: &#35136;</p>  <!-- Display: 襀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8940;</p>  <!-- Display: 襀 -->

URL Encoding:

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

Encodings

MD5:

76bceeb4b513472460139dca9a6de8d3

SHA1:

5d182fae94299530d8356b845d574b20e190443c

Base64:

6KWA