Unicode Finder

"脁" U+8101(CJK UNIFIED IDEOGRAPH-8101)

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

Programming

C
\u8101
JavaScript
\u8101
Java
\u8101
Json
\u8101
Python
\u8101
Perl
\x{8101}
PHP
\x{8101}
Ruby
\u{8101}
Rust
\u{8101}
Go
\u8101

Web

CSS
\008101
HtmlDecimal
脁
HtmlHexadecimal
脁
Url
%E8%84%81

Code

MD5
4d73b139d89448e7d2a435797e17c9b4
Sha1
e6d700124d587b50f7eb06ac0adfe85dda288ec8
Base64
6ISB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8101';
console.log(char);  // Output: 脁

Java:

char c = '\u8101';
System.out.println(c);  // Output: 脁

JSON:

{"text": "\u8101"}  // Value: 脁

Python:

char = '\u8101'
print(char)  # Output: 脁

Perl:

my $char = "\x{8101}";
print $char;  # Output: 脁

PHP:

$char = "\x{8101}";
echo $char;  // Output: 脁

Ruby:

char = "\u{8101}"
puts char  # Output: 脁

Rust:

let c = '\u{8101}';
println!("{}", c);  // Output: 脁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008101";  /* Display: 脁 */
}

HTML Decimal:

<p>HTML decimal: &#33025;</p>  <!-- Display: 脁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8101;</p>  <!-- Display: 脁 -->

URL Encoding:

// 脁 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%81

Encodings

MD5:

4d73b139d89448e7d2a435797e17c9b4

SHA1:

e6d700124d587b50f7eb06ac0adfe85dda288ec8

Base64:

6ISB