Unicode Finder

"聐" U+8050(CJK UNIFIED IDEOGRAPH-8050)

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

Programming

C
\u8050
JavaScript
\u8050
Java
\u8050
Json
\u8050
Python
\u8050
Perl
\x{8050}
PHP
\x{8050}
Ruby
\u{8050}
Rust
\u{8050}
Go
\u8050

Web

CSS
\008050
HtmlDecimal
聐
HtmlHexadecimal
聐
Url
%E8%81%90

Code

MD5
0db592704ce39c678ae1bfed02ea1244
Sha1
4952f56feddb8c8a5820c44c8cc78a0062b9af76
Base64
6IGQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8050';
console.log(char);  // Output: 聐

Java:

char c = '\u8050';
System.out.println(c);  // Output: 聐

JSON:

{"text": "\u8050"}  // Value: 聐

Python:

char = '\u8050'
print(char)  # Output: 聐

Perl:

my $char = "\x{8050}";
print $char;  # Output: 聐

PHP:

$char = "\x{8050}";
echo $char;  // Output: 聐

Ruby:

char = "\u{8050}"
puts char  # Output: 聐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008050";  /* Display: 聐 */
}

HTML Decimal:

<p>HTML decimal: &#32848;</p>  <!-- Display: 聐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8050;</p>  <!-- Display: 聐 -->

URL Encoding:

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

Encodings

MD5:

0db592704ce39c678ae1bfed02ea1244

SHA1:

4952f56feddb8c8a5820c44c8cc78a0062b9af76

Base64:

6IGQ