Unicode Finder

"脄" U+8104(CJK UNIFIED IDEOGRAPH-8104)

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

Programming

C
\u8104
JavaScript
\u8104
Java
\u8104
Json
\u8104
Python
\u8104
Perl
\x{8104}
PHP
\x{8104}
Ruby
\u{8104}
Rust
\u{8104}
Go
\u8104

Web

CSS
\008104
HtmlDecimal
脄
HtmlHexadecimal
脄
Url
%E8%84%84

Code

MD5
0110621320785f780e84d7a4378d6956
Sha1
386e979125162203cd6d0b55edbbbd6792440ff9
Base64
6ISE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8104';
console.log(char);  // Output: 脄

Java:

char c = '\u8104';
System.out.println(c);  // Output: 脄

JSON:

{"text": "\u8104"}  // Value: 脄

Python:

char = '\u8104'
print(char)  # Output: 脄

Perl:

my $char = "\x{8104}";
print $char;  # Output: 脄

PHP:

$char = "\x{8104}";
echo $char;  // Output: 脄

Ruby:

char = "\u{8104}"
puts char  # Output: 脄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008104";  /* Display: 脄 */
}

HTML Decimal:

<p>HTML decimal: &#33028;</p>  <!-- Display: 脄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8104;</p>  <!-- Display: 脄 -->

URL Encoding:

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

Encodings

MD5:

0110621320785f780e84d7a4378d6956

SHA1:

386e979125162203cd6d0b55edbbbd6792440ff9

Base64:

6ISE