Unicode Finder

"脙" U+8119(CJK UNIFIED IDEOGRAPH-8119)

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

Programming

C
\u8119
JavaScript
\u8119
Java
\u8119
Json
\u8119
Python
\u8119
Perl
\x{8119}
PHP
\x{8119}
Ruby
\u{8119}
Rust
\u{8119}
Go
\u8119

Web

CSS
\008119
HtmlDecimal
脙
HtmlHexadecimal
脙
Url
%E8%84%99

Code

MD5
1bd2cda8d3c8a682c29d0c7bfbb248cc
Sha1
15543196221f8c5a6ab038d4045769f684a8a381
Base64
6ISZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8119';
console.log(char);  // Output: 脙

Java:

char c = '\u8119';
System.out.println(c);  // Output: 脙

JSON:

{"text": "\u8119"}  // Value: 脙

Python:

char = '\u8119'
print(char)  # Output: 脙

Perl:

my $char = "\x{8119}";
print $char;  # Output: 脙

PHP:

$char = "\x{8119}";
echo $char;  // Output: 脙

Ruby:

char = "\u{8119}"
puts char  # Output: 脙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008119";  /* Display: 脙 */
}

HTML Decimal:

<p>HTML decimal: &#33049;</p>  <!-- Display: 脙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8119;</p>  <!-- Display: 脙 -->

URL Encoding:

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

Encodings

MD5:

1bd2cda8d3c8a682c29d0c7bfbb248cc

SHA1:

15543196221f8c5a6ab038d4045769f684a8a381

Base64:

6ISZ