Unicode Finder

"脝" U+811D(CJK UNIFIED IDEOGRAPH-811D)

U+811D
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-811D

Programming

C
\u811D
JavaScript
\u811D
Java
\u811D
Json
\u811D
Python
\u811D
Perl
\x{811D}
PHP
\x{811D}
Ruby
\u{811D}
Rust
\u{811D}
Go
\u811D

Web

CSS
\00811D
HtmlDecimal
脝
HtmlHexadecimal
脝
Url
%E8%84%9D

Code

MD5
eba3c7e4bd9dd1da71738b8fe4290a8b
Sha1
0cf5427e46e3599c19a02be7bafa2b8cf91a8106
Base64
6ISd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u811D';
console.log(char);  // Output: 脝

Java:

char c = '\u811D';
System.out.println(c);  // Output: 脝

JSON:

{"text": "\u811D"}  // Value: 脝

Python:

char = '\u811D'
print(char)  # Output: 脝

Perl:

my $char = "\x{811D}";
print $char;  # Output: 脝

PHP:

$char = "\x{811D}";
echo $char;  // Output: 脝

Ruby:

char = "\u{811D}"
puts char  # Output: 脝

Rust:

let c = '\u{811D}';
println!("{}", c);  // Output: 脝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00811D";  /* Display: 脝 */
}

HTML Decimal:

<p>HTML decimal: &#33053;</p>  <!-- Display: 脝 -->

HTML Hexadecimal:

<p>HTML hex: &#x811D;</p>  <!-- Display: 脝 -->

URL Encoding:

// 脝 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%9D

Encodings

MD5:

eba3c7e4bd9dd1da71738b8fe4290a8b

SHA1:

0cf5427e46e3599c19a02be7bafa2b8cf91a8106

Base64:

6ISd