Unicode Finder

"膙" U+8199(CJK UNIFIED IDEOGRAPH-8199)

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

Programming

C
\u8199
JavaScript
\u8199
Java
\u8199
Json
\u8199
Python
\u8199
Perl
\x{8199}
PHP
\x{8199}
Ruby
\u{8199}
Rust
\u{8199}
Go
\u8199

Web

CSS
\008199
HtmlDecimal
膙
HtmlHexadecimal
膙
Url
%E8%86%99

Code

MD5
9f2b5ef2bb019f78e3f28bcef22eed57
Sha1
3b685a05884853c028b8536c89c397fabc1dcc9c
Base64
6IaZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8199';
console.log(char);  // Output: 膙

Java:

char c = '\u8199';
System.out.println(c);  // Output: 膙

JSON:

{"text": "\u8199"}  // Value: 膙

Python:

char = '\u8199'
print(char)  # Output: 膙

Perl:

my $char = "\x{8199}";
print $char;  # Output: 膙

PHP:

$char = "\x{8199}";
echo $char;  // Output: 膙

Ruby:

char = "\u{8199}"
puts char  # Output: 膙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008199";  /* Display: 膙 */
}

HTML Decimal:

<p>HTML decimal: &#33177;</p>  <!-- Display: 膙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8199;</p>  <!-- Display: 膙 -->

URL Encoding:

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

Encodings

MD5:

9f2b5ef2bb019f78e3f28bcef22eed57

SHA1:

3b685a05884853c028b8536c89c397fabc1dcc9c

Base64:

6IaZ