Unicode Finder

"聄" U+8044(CJK UNIFIED IDEOGRAPH-8044)

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

Programming

C
\u8044
JavaScript
\u8044
Java
\u8044
Json
\u8044
Python
\u8044
Perl
\x{8044}
PHP
\x{8044}
Ruby
\u{8044}
Rust
\u{8044}
Go
\u8044

Web

CSS
\008044
HtmlDecimal
聄
HtmlHexadecimal
聄
Url
%E8%81%84

Code

MD5
3602e9187793fc295bd6e571b431d7e7
Sha1
81dab7520b86840b42ba89547a36122d4643a093
Base64
6IGE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8044';
console.log(char);  // Output: 聄

Java:

char c = '\u8044';
System.out.println(c);  // Output: 聄

JSON:

{"text": "\u8044"}  // Value: 聄

Python:

char = '\u8044'
print(char)  # Output: 聄

Perl:

my $char = "\x{8044}";
print $char;  # Output: 聄

PHP:

$char = "\x{8044}";
echo $char;  // Output: 聄

Ruby:

char = "\u{8044}"
puts char  # Output: 聄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008044";  /* Display: 聄 */
}

HTML Decimal:

<p>HTML decimal: &#32836;</p>  <!-- Display: 聄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8044;</p>  <!-- Display: 聄 -->

URL Encoding:

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

Encodings

MD5:

3602e9187793fc295bd6e571b431d7e7

SHA1:

81dab7520b86840b42ba89547a36122d4643a093

Base64:

6IGE