Unicode Finder

"脜" U+811C(CJK UNIFIED IDEOGRAPH-811C)

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

Programming

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

Web

CSS
\00811C
HtmlDecimal
脜
HtmlHexadecimal
脜
Url
%E8%84%9C

Code

MD5
af7158279ba58963471c215e739585c9
Sha1
4ea1498ec292a67e7c1b86ae93884417dad2af65
Base64
6ISc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u811C';
console.log(char);  // Output: 脜

Java:

char c = '\u811C';
System.out.println(c);  // Output: 脜

JSON:

{"text": "\u811C"}  // Value: 脜

Python:

char = '\u811C'
print(char)  # Output: 脜

Perl:

my $char = "\x{811C}";
print $char;  # Output: 脜

PHP:

$char = "\x{811C}";
echo $char;  // Output: 脜

Ruby:

char = "\u{811C}"
puts char  # Output: 脜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33052;</p>  <!-- Display: 脜 -->

HTML Hexadecimal:

<p>HTML hex: &#x811C;</p>  <!-- Display: 脜 -->

URL Encoding:

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

Encodings

MD5:

af7158279ba58963471c215e739585c9

SHA1:

4ea1498ec292a67e7c1b86ae93884417dad2af65

Base64:

6ISc