Unicode Finder

"膯" U+81AF(CJK UNIFIED IDEOGRAPH-81AF)

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

Programming

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

Web

CSS
\0081AF
HtmlDecimal
膯
HtmlHexadecimal
膯
Url
%E8%86%AF

Code

MD5
d1f9819d5753d4106009d183b8d8bcc8
Sha1
1aba3e1dd94ee8a8d3965a4c99b026951fed9072
Base64
6Iav

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81AF';
console.log(char);  // Output: 膯

Java:

char c = '\u81AF';
System.out.println(c);  // Output: 膯

JSON:

{"text": "\u81AF"}  // Value: 膯

Python:

char = '\u81AF'
print(char)  # Output: 膯

Perl:

my $char = "\x{81AF}";
print $char;  # Output: 膯

PHP:

$char = "\x{81AF}";
echo $char;  // Output: 膯

Ruby:

char = "\u{81AF}"
puts char  # Output: 膯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33199;</p>  <!-- Display: 膯 -->

HTML Hexadecimal:

<p>HTML hex: &#x81AF;</p>  <!-- Display: 膯 -->

URL Encoding:

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

Encodings

MD5:

d1f9819d5753d4106009d183b8d8bcc8

SHA1:

1aba3e1dd94ee8a8d3965a4c99b026951fed9072

Base64:

6Iav