Unicode Finder

"臌" U+81CC(CJK UNIFIED IDEOGRAPH-81CC)

U+81CC
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-81CC

Programming

C
\u81CC
JavaScript
\u81CC
Java
\u81CC
Json
\u81CC
Python
\u81CC
Perl
\x{81CC}
PHP
\x{81CC}
Ruby
\u{81CC}
Rust
\u{81CC}
Go
\u81CC

Web

CSS
\0081CC
HtmlDecimal
臌
HtmlHexadecimal
臌
Url
%E8%87%8C

Code

MD5
a676e7b572fd90738d1a552ec02cbca3
Sha1
22dbd8fa8f688e367b59683aac7306c6d67dfbd2
Base64
6IeM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81CC';
console.log(char);  // Output: 臌

Java:

char c = '\u81CC';
System.out.println(c);  // Output: 臌

JSON:

{"text": "\u81CC"}  // Value: 臌

Python:

char = '\u81CC'
print(char)  # Output: 臌

Perl:

my $char = "\x{81CC}";
print $char;  # Output: 臌

PHP:

$char = "\x{81CC}";
echo $char;  // Output: 臌

Ruby:

char = "\u{81CC}"
puts char  # Output: 臌

Rust:

let c = '\u{81CC}';
println!("{}", c);  // Output: 臌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0081CC";  /* Display: 臌 */
}

HTML Decimal:

<p>HTML decimal: &#33228;</p>  <!-- Display: 臌 -->

HTML Hexadecimal:

<p>HTML hex: &#x81CC;</p>  <!-- Display: 臌 -->

URL Encoding:

// 臌 URL encoding
https://unicodefinder.com/search.php?query=%E8%87%8C

Encodings

MD5:

a676e7b572fd90738d1a552ec02cbca3

SHA1:

22dbd8fa8f688e367b59683aac7306c6d67dfbd2

Base64:

6IeM