Unicode Finder

"膘" U+8198(CJK UNIFIED IDEOGRAPH-8198)

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

Programming

C
\u8198
JavaScript
\u8198
Java
\u8198
Json
\u8198
Python
\u8198
Perl
\x{8198}
PHP
\x{8198}
Ruby
\u{8198}
Rust
\u{8198}
Go
\u8198

Web

CSS
\008198
HtmlDecimal
膘
HtmlHexadecimal
膘
Url
%E8%86%98

Code

MD5
6a1bcbce8180ee7aeec6c62e520e0698
Sha1
c3b6aedcc843041aaad106ea53508344be5f1921
Base64
6IaY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8198';
console.log(char);  // Output: 膘

Java:

char c = '\u8198';
System.out.println(c);  // Output: 膘

JSON:

{"text": "\u8198"}  // Value: 膘

Python:

char = '\u8198'
print(char)  # Output: 膘

Perl:

my $char = "\x{8198}";
print $char;  # Output: 膘

PHP:

$char = "\x{8198}";
echo $char;  // Output: 膘

Ruby:

char = "\u{8198}"
puts char  # Output: 膘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008198";  /* Display: 膘 */
}

HTML Decimal:

<p>HTML decimal: &#33176;</p>  <!-- Display: 膘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8198;</p>  <!-- Display: 膘 -->

URL Encoding:

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

Encodings

MD5:

6a1bcbce8180ee7aeec6c62e520e0698

SHA1:

c3b6aedcc843041aaad106ea53508344be5f1921

Base64:

6IaY