Unicode Finder

"耄" U+8004(CJK UNIFIED IDEOGRAPH-8004)

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

Programming

C
\u8004
JavaScript
\u8004
Java
\u8004
Json
\u8004
Python
\u8004
Perl
\x{8004}
PHP
\x{8004}
Ruby
\u{8004}
Rust
\u{8004}
Go
\u8004

Web

CSS
\008004
HtmlDecimal
耄
HtmlHexadecimal
耄
Url
%E8%80%84

Code

MD5
929b7fe5940d0441c9ff0dd447c9d164
Sha1
fc62dada8edacb1bdbce16912a91456eb36be124
Base64
6ICE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8004';
console.log(char);  // Output: 耄

Java:

char c = '\u8004';
System.out.println(c);  // Output: 耄

JSON:

{"text": "\u8004"}  // Value: 耄

Python:

char = '\u8004'
print(char)  # Output: 耄

Perl:

my $char = "\x{8004}";
print $char;  # Output: 耄

PHP:

$char = "\x{8004}";
echo $char;  // Output: 耄

Ruby:

char = "\u{8004}"
puts char  # Output: 耄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008004";  /* Display: 耄 */
}

HTML Decimal:

<p>HTML decimal: &#32772;</p>  <!-- Display: 耄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8004;</p>  <!-- Display: 耄 -->

URL Encoding:

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

Encodings

MD5:

929b7fe5940d0441c9ff0dd447c9d164

SHA1:

fc62dada8edacb1bdbce16912a91456eb36be124

Base64:

6ICE