Unicode Finder

"聨" U+8068(CJK UNIFIED IDEOGRAPH-8068)

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

Programming

C
\u8068
JavaScript
\u8068
Java
\u8068
Json
\u8068
Python
\u8068
Perl
\x{8068}
PHP
\x{8068}
Ruby
\u{8068}
Rust
\u{8068}
Go
\u8068

Web

CSS
\008068
HtmlDecimal
聨
HtmlHexadecimal
聨
Url
%E8%81%A8

Code

MD5
57804472afe8d6e3485ca04f02c6a11a
Sha1
c8b48c46d1ed509809d2d88d8a45276f4d4709a6
Base64
6IGo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8068';
console.log(char);  // Output: 聨

Java:

char c = '\u8068';
System.out.println(c);  // Output: 聨

JSON:

{"text": "\u8068"}  // Value: 聨

Python:

char = '\u8068'
print(char)  # Output: 聨

Perl:

my $char = "\x{8068}";
print $char;  # Output: 聨

PHP:

$char = "\x{8068}";
echo $char;  // Output: 聨

Ruby:

char = "\u{8068}"
puts char  # Output: 聨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008068";  /* Display: 聨 */
}

HTML Decimal:

<p>HTML decimal: &#32872;</p>  <!-- Display: 聨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8068;</p>  <!-- Display: 聨 -->

URL Encoding:

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

Encodings

MD5:

57804472afe8d6e3485ca04f02c6a11a

SHA1:

c8b48c46d1ed509809d2d88d8a45276f4d4709a6

Base64:

6IGo