Unicode Finder

"聣" U+8063(CJK UNIFIED IDEOGRAPH-8063)

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

Programming

C
\u8063
JavaScript
\u8063
Java
\u8063
Json
\u8063
Python
\u8063
Perl
\x{8063}
PHP
\x{8063}
Ruby
\u{8063}
Rust
\u{8063}
Go
\u8063

Web

CSS
\008063
HtmlDecimal
聣
HtmlHexadecimal
聣
Url
%E8%81%A3

Code

MD5
f0fba00512ebee211287f71a5f833760
Sha1
005d8176f0a2987a4b91c13bdb78dd25bd1c0e38
Base64
6IGj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8063';
console.log(char);  // Output: 聣

Java:

char c = '\u8063';
System.out.println(c);  // Output: 聣

JSON:

{"text": "\u8063"}  // Value: 聣

Python:

char = '\u8063'
print(char)  # Output: 聣

Perl:

my $char = "\x{8063}";
print $char;  # Output: 聣

PHP:

$char = "\x{8063}";
echo $char;  // Output: 聣

Ruby:

char = "\u{8063}"
puts char  # Output: 聣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008063";  /* Display: 聣 */
}

HTML Decimal:

<p>HTML decimal: &#32867;</p>  <!-- Display: 聣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8063;</p>  <!-- Display: 聣 -->

URL Encoding:

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

Encodings

MD5:

f0fba00512ebee211287f71a5f833760

SHA1:

005d8176f0a2987a4b91c13bdb78dd25bd1c0e38

Base64:

6IGj