Unicode Finder

"胏" U+80CF(CJK UNIFIED IDEOGRAPH-80CF)

U+80CF
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-80CF

Programming

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

Web

CSS
\0080CF
HtmlDecimal
胏
HtmlHexadecimal
胏
Url
%E8%83%8F

Code

MD5
dbcd52de91161b9035947f0afb2e8450
Sha1
121595c5d5b84458cd3016db014e17ac973126dd
Base64
6IOP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u80CF';
console.log(char);  // Output: 胏

Java:

char c = '\u80CF';
System.out.println(c);  // Output: 胏

JSON:

{"text": "\u80CF"}  // Value: 胏

Python:

char = '\u80CF'
print(char)  # Output: 胏

Perl:

my $char = "\x{80CF}";
print $char;  # Output: 胏

PHP:

$char = "\x{80CF}";
echo $char;  // Output: 胏

Ruby:

char = "\u{80CF}"
puts char  # Output: 胏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32975;</p>  <!-- Display: 胏 -->

HTML Hexadecimal:

<p>HTML hex: &#x80CF;</p>  <!-- Display: 胏 -->

URL Encoding:

// 胏 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%8F

Encodings

MD5:

dbcd52de91161b9035947f0afb2e8450

SHA1:

121595c5d5b84458cd3016db014e17ac973126dd

Base64:

6IOP