Unicode Finder

"臜" U+81DC(CJK UNIFIED IDEOGRAPH-81DC)

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

Programming

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

Web

CSS
\0081DC
HtmlDecimal
臜
HtmlHexadecimal
臜
Url
%E8%87%9C

Code

MD5
91385f47ed5459a34a39de1c0112379c
Sha1
426f6164c16670a858264e5112ffb424d989309e
Base64
6Iec

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81DC';
console.log(char);  // Output: 臜

Java:

char c = '\u81DC';
System.out.println(c);  // Output: 臜

JSON:

{"text": "\u81DC"}  // Value: 臜

Python:

char = '\u81DC'
print(char)  # Output: 臜

Perl:

my $char = "\x{81DC}";
print $char;  # Output: 臜

PHP:

$char = "\x{81DC}";
echo $char;  // Output: 臜

Ruby:

char = "\u{81DC}"
puts char  # Output: 臜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33244;</p>  <!-- Display: 臜 -->

HTML Hexadecimal:

<p>HTML hex: &#x81DC;</p>  <!-- Display: 臜 -->

URL Encoding:

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

Encodings

MD5:

91385f47ed5459a34a39de1c0112379c

SHA1:

426f6164c16670a858264e5112ffb424d989309e

Base64:

6Iec