Unicode Finder

"肑" U+8091(CJK UNIFIED IDEOGRAPH-8091)

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

Programming

C
\u8091
JavaScript
\u8091
Java
\u8091
Json
\u8091
Python
\u8091
Perl
\x{8091}
PHP
\x{8091}
Ruby
\u{8091}
Rust
\u{8091}
Go
\u8091

Web

CSS
\008091
HtmlDecimal
肑
HtmlHexadecimal
肑
Url
%E8%82%91

Code

MD5
a1323d12b66b8216f8af83d0537eee1d
Sha1
01b0e590e6a44110592806ac9ffcbba62655f74f
Base64
6IKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8091';
console.log(char);  // Output: 肑

Java:

char c = '\u8091';
System.out.println(c);  // Output: 肑

JSON:

{"text": "\u8091"}  // Value: 肑

Python:

char = '\u8091'
print(char)  # Output: 肑

Perl:

my $char = "\x{8091}";
print $char;  # Output: 肑

PHP:

$char = "\x{8091}";
echo $char;  // Output: 肑

Ruby:

char = "\u{8091}"
puts char  # Output: 肑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008091";  /* Display: 肑 */
}

HTML Decimal:

<p>HTML decimal: &#32913;</p>  <!-- Display: 肑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8091;</p>  <!-- Display: 肑 -->

URL Encoding:

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

Encodings

MD5:

a1323d12b66b8216f8af83d0537eee1d

SHA1:

01b0e590e6a44110592806ac9ffcbba62655f74f

Base64:

6IKR