Unicode Finder

"臒" U+81D2(CJK UNIFIED IDEOGRAPH-81D2)

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

Programming

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

Web

CSS
\0081D2
HtmlDecimal
臒
HtmlHexadecimal
臒
Url
%E8%87%92

Code

MD5
fc4f95e918bcb134e00362d30785b0f3
Sha1
dbbc12ad8b774994521e93016c75adee2c725809
Base64
6IeS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81D2';
console.log(char);  // Output: 臒

Java:

char c = '\u81D2';
System.out.println(c);  // Output: 臒

JSON:

{"text": "\u81D2"}  // Value: 臒

Python:

char = '\u81D2'
print(char)  # Output: 臒

Perl:

my $char = "\x{81D2}";
print $char;  # Output: 臒

PHP:

$char = "\x{81D2}";
echo $char;  // Output: 臒

Ruby:

char = "\u{81D2}"
puts char  # Output: 臒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33234;</p>  <!-- Display: 臒 -->

HTML Hexadecimal:

<p>HTML hex: &#x81D2;</p>  <!-- Display: 臒 -->

URL Encoding:

// 臒 URL encoding
https://unicodefinder.com/search.php?query=%E8%87%92

Encodings

MD5:

fc4f95e918bcb134e00362d30785b0f3

SHA1:

dbbc12ad8b774994521e93016c75adee2c725809

Base64:

6IeS