Unicode Finder

"脘" U+8118(CJK UNIFIED IDEOGRAPH-8118)

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

Programming

C
\u8118
JavaScript
\u8118
Java
\u8118
Json
\u8118
Python
\u8118
Perl
\x{8118}
PHP
\x{8118}
Ruby
\u{8118}
Rust
\u{8118}
Go
\u8118

Web

CSS
\008118
HtmlDecimal
脘
HtmlHexadecimal
脘
Url
%E8%84%98

Code

MD5
59870b973c80e41390eb424f11361eed
Sha1
6b2bc7913eedc0ff9d5d3b28812c1f469bf1372f
Base64
6ISY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8118';
console.log(char);  // Output: 脘

Java:

char c = '\u8118';
System.out.println(c);  // Output: 脘

JSON:

{"text": "\u8118"}  // Value: 脘

Python:

char = '\u8118'
print(char)  # Output: 脘

Perl:

my $char = "\x{8118}";
print $char;  # Output: 脘

PHP:

$char = "\x{8118}";
echo $char;  // Output: 脘

Ruby:

char = "\u{8118}"
puts char  # Output: 脘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008118";  /* Display: 脘 */
}

HTML Decimal:

<p>HTML decimal: &#33048;</p>  <!-- Display: 脘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8118;</p>  <!-- Display: 脘 -->

URL Encoding:

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

Encodings

MD5:

59870b973c80e41390eb424f11361eed

SHA1:

6b2bc7913eedc0ff9d5d3b28812c1f469bf1372f

Base64:

6ISY