Unicode Finder

"膁" U+8181(CJK UNIFIED IDEOGRAPH-8181)

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

Programming

C
\u8181
JavaScript
\u8181
Java
\u8181
Json
\u8181
Python
\u8181
Perl
\x{8181}
PHP
\x{8181}
Ruby
\u{8181}
Rust
\u{8181}
Go
\u8181

Web

CSS
\008181
HtmlDecimal
膁
HtmlHexadecimal
膁
Url
%E8%86%81

Code

MD5
f0aae427bdaba173f3e5d431f6ecd67f
Sha1
b4d5b99410223b9fe40d05874d2c7a308e59e997
Base64
6IaB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8181';
console.log(char);  // Output: 膁

Java:

char c = '\u8181';
System.out.println(c);  // Output: 膁

JSON:

{"text": "\u8181"}  // Value: 膁

Python:

char = '\u8181'
print(char)  # Output: 膁

Perl:

my $char = "\x{8181}";
print $char;  # Output: 膁

PHP:

$char = "\x{8181}";
echo $char;  // Output: 膁

Ruby:

char = "\u{8181}"
puts char  # Output: 膁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008181";  /* Display: 膁 */
}

HTML Decimal:

<p>HTML decimal: &#33153;</p>  <!-- Display: 膁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8181;</p>  <!-- Display: 膁 -->

URL Encoding:

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

Encodings

MD5:

f0aae427bdaba173f3e5d431f6ecd67f

SHA1:

b4d5b99410223b9fe40d05874d2c7a308e59e997

Base64:

6IaB