Unicode Finder

"脡" U+8121(CJK UNIFIED IDEOGRAPH-8121)

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

Programming

C
\u8121
JavaScript
\u8121
Java
\u8121
Json
\u8121
Python
\u8121
Perl
\x{8121}
PHP
\x{8121}
Ruby
\u{8121}
Rust
\u{8121}
Go
\u8121

Web

CSS
\008121
HtmlDecimal
脡
HtmlHexadecimal
脡
Url
%E8%84%A1

Code

MD5
49e0c9f6466d7c3d332a4f3a300e44b7
Sha1
016fa31f560ad4fff5970ac9711fdf3c1951259f
Base64
6ISh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8121';
console.log(char);  // Output: 脡

Java:

char c = '\u8121';
System.out.println(c);  // Output: 脡

JSON:

{"text": "\u8121"}  // Value: 脡

Python:

char = '\u8121'
print(char)  # Output: 脡

Perl:

my $char = "\x{8121}";
print $char;  # Output: 脡

PHP:

$char = "\x{8121}";
echo $char;  // Output: 脡

Ruby:

char = "\u{8121}"
puts char  # Output: 脡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008121";  /* Display: 脡 */
}

HTML Decimal:

<p>HTML decimal: &#33057;</p>  <!-- Display: 脡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8121;</p>  <!-- Display: 脡 -->

URL Encoding:

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

Encodings

MD5:

49e0c9f6466d7c3d332a4f3a300e44b7

SHA1:

016fa31f560ad4fff5970ac9711fdf3c1951259f

Base64:

6ISh