Unicode Finder

"脗" U+8117(CJK UNIFIED IDEOGRAPH-8117)

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

Programming

C
\u8117
JavaScript
\u8117
Java
\u8117
Json
\u8117
Python
\u8117
Perl
\x{8117}
PHP
\x{8117}
Ruby
\u{8117}
Rust
\u{8117}
Go
\u8117

Web

CSS
\008117
HtmlDecimal
脗
HtmlHexadecimal
脗
Url
%E8%84%97

Code

MD5
31f0fd6234d4717243a811564b4e609d
Sha1
b4f9b2a584ae65e6a1be514b98a3e3da927dc0d0
Base64
6ISX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8117';
console.log(char);  // Output: 脗

Java:

char c = '\u8117';
System.out.println(c);  // Output: 脗

JSON:

{"text": "\u8117"}  // Value: 脗

Python:

char = '\u8117'
print(char)  # Output: 脗

Perl:

my $char = "\x{8117}";
print $char;  # Output: 脗

PHP:

$char = "\x{8117}";
echo $char;  // Output: 脗

Ruby:

char = "\u{8117}"
puts char  # Output: 脗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008117";  /* Display: 脗 */
}

HTML Decimal:

<p>HTML decimal: &#33047;</p>  <!-- Display: 脗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8117;</p>  <!-- Display: 脗 -->

URL Encoding:

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

Encodings

MD5:

31f0fd6234d4717243a811564b4e609d

SHA1:

b4f9b2a584ae65e6a1be514b98a3e3da927dc0d0

Base64:

6ISX