Unicode Finder

"肒" U+8092(CJK UNIFIED IDEOGRAPH-8092)

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

Programming

C
\u8092
JavaScript
\u8092
Java
\u8092
Json
\u8092
Python
\u8092
Perl
\x{8092}
PHP
\x{8092}
Ruby
\u{8092}
Rust
\u{8092}
Go
\u8092

Web

CSS
\008092
HtmlDecimal
肒
HtmlHexadecimal
肒
Url
%E8%82%92

Code

MD5
b90de39651eb087a570ab80c8593a70d
Sha1
9cd66b3251be73bc42ce9c6d95b3528c85330c35
Base64
6IKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8092';
console.log(char);  // Output: 肒

Java:

char c = '\u8092';
System.out.println(c);  // Output: 肒

JSON:

{"text": "\u8092"}  // Value: 肒

Python:

char = '\u8092'
print(char)  # Output: 肒

Perl:

my $char = "\x{8092}";
print $char;  # Output: 肒

PHP:

$char = "\x{8092}";
echo $char;  // Output: 肒

Ruby:

char = "\u{8092}"
puts char  # Output: 肒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008092";  /* Display: 肒 */
}

HTML Decimal:

<p>HTML decimal: &#32914;</p>  <!-- Display: 肒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8092;</p>  <!-- Display: 肒 -->

URL Encoding:

// 肒 URL encoding
https://unicodefinder.com/search.php?query=%E8%82%92

Encodings

MD5:

b90de39651eb087a570ab80c8593a70d

SHA1:

9cd66b3251be73bc42ce9c6d95b3528c85330c35

Base64:

6IKS