Unicode Finder

"膫" U+81AB(CJK UNIFIED IDEOGRAPH-81AB)

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

Programming

C
\u81AB
JavaScript
\u81AB
Java
\u81AB
Json
\u81AB
Python
\u81AB
Perl
\x{81AB}
PHP
\x{81AB}
Ruby
\u{81AB}
Rust
\u{81AB}
Go
\u81AB

Web

CSS
\0081AB
HtmlDecimal
膫
HtmlHexadecimal
膫
Url
%E8%86%AB

Code

MD5
265a5c6ac49acb46b120366d1ce95448
Sha1
2406d679739e67e88735a7d7b8a768b2e1d63063
Base64
6Iar

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81AB';
console.log(char);  // Output: 膫

Java:

char c = '\u81AB';
System.out.println(c);  // Output: 膫

JSON:

{"text": "\u81AB"}  // Value: 膫

Python:

char = '\u81AB'
print(char)  # Output: 膫

Perl:

my $char = "\x{81AB}";
print $char;  # Output: 膫

PHP:

$char = "\x{81AB}";
echo $char;  // Output: 膫

Ruby:

char = "\u{81AB}"
puts char  # Output: 膫

Rust:

let c = '\u{81AB}';
println!("{}", c);  // Output: 膫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0081AB";  /* Display: 膫 */
}

HTML Decimal:

<p>HTML decimal: &#33195;</p>  <!-- Display: 膫 -->

HTML Hexadecimal:

<p>HTML hex: &#x81AB;</p>  <!-- Display: 膫 -->

URL Encoding:

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

Encodings

MD5:

265a5c6ac49acb46b120366d1ce95448

SHA1:

2406d679739e67e88735a7d7b8a768b2e1d63063

Base64:

6Iar