Unicode Finder

"膎" U+818E(CJK UNIFIED IDEOGRAPH-818E)

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

Programming

C
\u818E
JavaScript
\u818E
Java
\u818E
Json
\u818E
Python
\u818E
Perl
\x{818E}
PHP
\x{818E}
Ruby
\u{818E}
Rust
\u{818E}
Go
\u818E

Web

CSS
\00818E
HtmlDecimal
膎
HtmlHexadecimal
膎
Url
%E8%86%8E

Code

MD5
58610a73ebc40e6bfa3908eeb0e3fb11
Sha1
32c0aeab1b8b1919ab43e79513d564ae45511de7
Base64
6IaO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u818E';
console.log(char);  // Output: 膎

Java:

char c = '\u818E';
System.out.println(c);  // Output: 膎

JSON:

{"text": "\u818E"}  // Value: 膎

Python:

char = '\u818E'
print(char)  # Output: 膎

Perl:

my $char = "\x{818E}";
print $char;  # Output: 膎

PHP:

$char = "\x{818E}";
echo $char;  // Output: 膎

Ruby:

char = "\u{818E}"
puts char  # Output: 膎

Rust:

let c = '\u{818E}';
println!("{}", c);  // Output: 膎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00818E";  /* Display: 膎 */
}

HTML Decimal:

<p>HTML decimal: &#33166;</p>  <!-- Display: 膎 -->

HTML Hexadecimal:

<p>HTML hex: &#x818E;</p>  <!-- Display: 膎 -->

URL Encoding:

// 膎 URL encoding
https://unicodefinder.com/search.php?query=%E8%86%8E

Encodings

MD5:

58610a73ebc40e6bfa3908eeb0e3fb11

SHA1:

32c0aeab1b8b1919ab43e79513d564ae45511de7

Base64:

6IaO