Unicode Finder

"聱" U+8071(CJK UNIFIED IDEOGRAPH-8071)

U+8071
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8071

Programming

C
\u8071
JavaScript
\u8071
Java
\u8071
Json
\u8071
Python
\u8071
Perl
\x{8071}
PHP
\x{8071}
Ruby
\u{8071}
Rust
\u{8071}
Go
\u8071

Web

CSS
\008071
HtmlDecimal
聱
HtmlHexadecimal
聱
Url
%E8%81%B1

Code

MD5
3232ea496109f743ce6308c250b1a1df
Sha1
3cfae2de0e7d0b54f5e0447364be52e142c488ba
Base64
6IGx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8071';
console.log(char);  // Output: 聱

Java:

char c = '\u8071';
System.out.println(c);  // Output: 聱

JSON:

{"text": "\u8071"}  // Value: 聱

Python:

char = '\u8071'
print(char)  # Output: 聱

Perl:

my $char = "\x{8071}";
print $char;  # Output: 聱

PHP:

$char = "\x{8071}";
echo $char;  // Output: 聱

Ruby:

char = "\u{8071}"
puts char  # Output: 聱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008071";  /* Display: 聱 */
}

HTML Decimal:

<p>HTML decimal: &#32881;</p>  <!-- Display: 聱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8071;</p>  <!-- Display: 聱 -->

URL Encoding:

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

Encodings

MD5:

3232ea496109f743ce6308c250b1a1df

SHA1:

3cfae2de0e7d0b54f5e0447364be52e142c488ba

Base64:

6IGx