Unicode Finder

"褄" U+8904(CJK UNIFIED IDEOGRAPH-8904)

U+8904
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8904

Programming

C
\u8904
JavaScript
\u8904
Java
\u8904
Json
\u8904
Python
\u8904
Perl
\x{8904}
PHP
\x{8904}
Ruby
\u{8904}
Rust
\u{8904}
Go
\u8904

Web

CSS
\008904
HtmlDecimal
褄
HtmlHexadecimal
褄
Url
%E8%A4%84

Code

MD5
9d6fbf6227c007c57970d5f867e35811
Sha1
c148fa05afe1c5de84b55b5db3a620828d9bfff9
Base64
6KSE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8904';
console.log(char);  // Output: 褄

Java:

char c = '\u8904';
System.out.println(c);  // Output: 褄

JSON:

{"text": "\u8904"}  // Value: 褄

Python:

char = '\u8904'
print(char)  # Output: 褄

Perl:

my $char = "\x{8904}";
print $char;  # Output: 褄

PHP:

$char = "\x{8904}";
echo $char;  // Output: 褄

Ruby:

char = "\u{8904}"
puts char  # Output: 褄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008904";  /* Display: 褄 */
}

HTML Decimal:

<p>HTML decimal: &#35076;</p>  <!-- Display: 褄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8904;</p>  <!-- Display: 褄 -->

URL Encoding:

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

Encodings

MD5:

9d6fbf6227c007c57970d5f867e35811

SHA1:

c148fa05afe1c5de84b55b5db3a620828d9bfff9

Base64:

6KSE