Unicode Finder

"膔" U+8194(CJK UNIFIED IDEOGRAPH-8194)

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

Programming

C
\u8194
JavaScript
\u8194
Java
\u8194
Json
\u8194
Python
\u8194
Perl
\x{8194}
PHP
\x{8194}
Ruby
\u{8194}
Rust
\u{8194}
Go
\u8194

Web

CSS
\008194
HtmlDecimal
膔
HtmlHexadecimal
膔
Url
%E8%86%94

Code

MD5
8d1a7ad3e1b64f04edf95f12df227496
Sha1
81918705f4c7fc32cf3c2f6b61e1d7a97b4ee303
Base64
6IaU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8194';
console.log(char);  // Output: 膔

Java:

char c = '\u8194';
System.out.println(c);  // Output: 膔

JSON:

{"text": "\u8194"}  // Value: 膔

Python:

char = '\u8194'
print(char)  # Output: 膔

Perl:

my $char = "\x{8194}";
print $char;  # Output: 膔

PHP:

$char = "\x{8194}";
echo $char;  // Output: 膔

Ruby:

char = "\u{8194}"
puts char  # Output: 膔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008194";  /* Display: 膔 */
}

HTML Decimal:

<p>HTML decimal: &#33172;</p>  <!-- Display: 膔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8194;</p>  <!-- Display: 膔 -->

URL Encoding:

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

Encodings

MD5:

8d1a7ad3e1b64f04edf95f12df227496

SHA1:

81918705f4c7fc32cf3c2f6b61e1d7a97b4ee303

Base64:

6IaU