Unicode Finder

"膉" U+8189(CJK UNIFIED IDEOGRAPH-8189)

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

Programming

C
\u8189
JavaScript
\u8189
Java
\u8189
Json
\u8189
Python
\u8189
Perl
\x{8189}
PHP
\x{8189}
Ruby
\u{8189}
Rust
\u{8189}
Go
\u8189

Web

CSS
\008189
HtmlDecimal
膉
HtmlHexadecimal
膉
Url
%E8%86%89

Code

MD5
cd8c8ebd2ca37183968e5198d0ede5e4
Sha1
8b67711665c60f23fec8bcb56453efa7f828a2bb
Base64
6IaJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8189';
console.log(char);  // Output: 膉

Java:

char c = '\u8189';
System.out.println(c);  // Output: 膉

JSON:

{"text": "\u8189"}  // Value: 膉

Python:

char = '\u8189'
print(char)  # Output: 膉

Perl:

my $char = "\x{8189}";
print $char;  # Output: 膉

PHP:

$char = "\x{8189}";
echo $char;  // Output: 膉

Ruby:

char = "\u{8189}"
puts char  # Output: 膉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008189";  /* Display: 膉 */
}

HTML Decimal:

<p>HTML decimal: &#33161;</p>  <!-- Display: 膉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8189;</p>  <!-- Display: 膉 -->

URL Encoding:

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

Encodings

MD5:

cd8c8ebd2ca37183968e5198d0ede5e4

SHA1:

8b67711665c60f23fec8bcb56453efa7f828a2bb

Base64:

6IaJ