Unicode Finder

"肁" U+8081(CJK UNIFIED IDEOGRAPH-8081)

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

Programming

C
\u8081
JavaScript
\u8081
Java
\u8081
Json
\u8081
Python
\u8081
Perl
\x{8081}
PHP
\x{8081}
Ruby
\u{8081}
Rust
\u{8081}
Go
\u8081

Web

CSS
\008081
HtmlDecimal
肁
HtmlHexadecimal
肁
Url
%E8%82%81

Code

MD5
0af4e14c965dc2dcb5d2000931f6d7ae
Sha1
fd8867ac3c9db842a67e141da6ad3cc4297c915f
Base64
6IKB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8081';
console.log(char);  // Output: 肁

Java:

char c = '\u8081';
System.out.println(c);  // Output: 肁

JSON:

{"text": "\u8081"}  // Value: 肁

Python:

char = '\u8081'
print(char)  # Output: 肁

Perl:

my $char = "\x{8081}";
print $char;  # Output: 肁

PHP:

$char = "\x{8081}";
echo $char;  // Output: 肁

Ruby:

char = "\u{8081}"
puts char  # Output: 肁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008081";  /* Display: 肁 */
}

HTML Decimal:

<p>HTML decimal: &#32897;</p>  <!-- Display: 肁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8081;</p>  <!-- Display: 肁 -->

URL Encoding:

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

Encodings

MD5:

0af4e14c965dc2dcb5d2000931f6d7ae

SHA1:

fd8867ac3c9db842a67e141da6ad3cc4297c915f

Base64:

6IKB