Unicode Finder

"聭" U+806D(CJK UNIFIED IDEOGRAPH-806D)

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

Programming

C
\u806D
JavaScript
\u806D
Java
\u806D
Json
\u806D
Python
\u806D
Perl
\x{806D}
PHP
\x{806D}
Ruby
\u{806D}
Rust
\u{806D}
Go
\u806D

Web

CSS
\00806D
HtmlDecimal
聭
HtmlHexadecimal
聭
Url
%E8%81%AD

Code

MD5
8702819e3b0266e0bb7dad93046b7b35
Sha1
183a0c26e6dc7b71c85d0966e6787c8def7752a0
Base64
6IGt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u806D';
console.log(char);  // Output: 聭

Java:

char c = '\u806D';
System.out.println(c);  // Output: 聭

JSON:

{"text": "\u806D"}  // Value: 聭

Python:

char = '\u806D'
print(char)  # Output: 聭

Perl:

my $char = "\x{806D}";
print $char;  # Output: 聭

PHP:

$char = "\x{806D}";
echo $char;  // Output: 聭

Ruby:

char = "\u{806D}"
puts char  # Output: 聭

Rust:

let c = '\u{806D}';
println!("{}", c);  // Output: 聭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00806D";  /* Display: 聭 */
}

HTML Decimal:

<p>HTML decimal: &#32877;</p>  <!-- Display: 聭 -->

HTML Hexadecimal:

<p>HTML hex: &#x806D;</p>  <!-- Display: 聭 -->

URL Encoding:

// 聭 URL encoding
https://unicodefinder.com/search.php?query=%E8%81%AD

Encodings

MD5:

8702819e3b0266e0bb7dad93046b7b35

SHA1:

183a0c26e6dc7b71c85d0966e6787c8def7752a0

Base64:

6IGt