Unicode Finder

"胬" U+80EC(CJK UNIFIED IDEOGRAPH-80EC)

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

Programming

C
\u80EC
JavaScript
\u80EC
Java
\u80EC
Json
\u80EC
Python
\u80EC
Perl
\x{80EC}
PHP
\x{80EC}
Ruby
\u{80EC}
Rust
\u{80EC}
Go
\u80EC

Web

CSS
\0080EC
HtmlDecimal
胬
HtmlHexadecimal
胬
Url
%E8%83%AC

Code

MD5
c905f7d6b9b5efde32d1a87bdee9e699
Sha1
f3502da8f06cbe9812398c26f756f5f290055357
Base64
6IOs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u80EC';
console.log(char);  // Output: 胬

Java:

char c = '\u80EC';
System.out.println(c);  // Output: 胬

JSON:

{"text": "\u80EC"}  // Value: 胬

Python:

char = '\u80EC'
print(char)  # Output: 胬

Perl:

my $char = "\x{80EC}";
print $char;  # Output: 胬

PHP:

$char = "\x{80EC}";
echo $char;  // Output: 胬

Ruby:

char = "\u{80EC}"
puts char  # Output: 胬

Rust:

let c = '\u{80EC}';
println!("{}", c);  // Output: 胬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0080EC";  /* Display: 胬 */
}

HTML Decimal:

<p>HTML decimal: &#33004;</p>  <!-- Display: 胬 -->

HTML Hexadecimal:

<p>HTML hex: &#x80EC;</p>  <!-- Display: 胬 -->

URL Encoding:

// 胬 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%AC

Encodings

MD5:

c905f7d6b9b5efde32d1a87bdee9e699

SHA1:

f3502da8f06cbe9812398c26f756f5f290055357

Base64:

6IOs