Unicode Finder

"聙" U+8059(CJK UNIFIED IDEOGRAPH-8059)

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

Programming

C
\u8059
JavaScript
\u8059
Java
\u8059
Json
\u8059
Python
\u8059
Perl
\x{8059}
PHP
\x{8059}
Ruby
\u{8059}
Rust
\u{8059}
Go
\u8059

Web

CSS
\008059
HtmlDecimal
聙
HtmlHexadecimal
聙
Url
%E8%81%99

Code

MD5
301e95ac32643906f27c552123a40c96
Sha1
1655528071d51c7c6486bfc9c5489ff09d8c49b8
Base64
6IGZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8059';
console.log(char);  // Output: 聙

Java:

char c = '\u8059';
System.out.println(c);  // Output: 聙

JSON:

{"text": "\u8059"}  // Value: 聙

Python:

char = '\u8059'
print(char)  # Output: 聙

Perl:

my $char = "\x{8059}";
print $char;  # Output: 聙

PHP:

$char = "\x{8059}";
echo $char;  // Output: 聙

Ruby:

char = "\u{8059}"
puts char  # Output: 聙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008059";  /* Display: 聙 */
}

HTML Decimal:

<p>HTML decimal: &#32857;</p>  <!-- Display: 聙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8059;</p>  <!-- Display: 聙 -->

URL Encoding:

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

Encodings

MD5:

301e95ac32643906f27c552123a40c96

SHA1:

1655528071d51c7c6486bfc9c5489ff09d8c49b8

Base64:

6IGZ