Unicode Finder

"膓" U+8193(CJK UNIFIED IDEOGRAPH-8193)

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

Programming

C
\u8193
JavaScript
\u8193
Java
\u8193
Json
\u8193
Python
\u8193
Perl
\x{8193}
PHP
\x{8193}
Ruby
\u{8193}
Rust
\u{8193}
Go
\u8193

Web

CSS
\008193
HtmlDecimal
膓
HtmlHexadecimal
膓
Url
%E8%86%93

Code

MD5
77a64a2d235575f3f521592eb7b5d335
Sha1
47944a8a67e5f8cb6bf58c381be4c9aca7ecbee0
Base64
6IaT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8193';
console.log(char);  // Output: 膓

Java:

char c = '\u8193';
System.out.println(c);  // Output: 膓

JSON:

{"text": "\u8193"}  // Value: 膓

Python:

char = '\u8193'
print(char)  # Output: 膓

Perl:

my $char = "\x{8193}";
print $char;  # Output: 膓

PHP:

$char = "\x{8193}";
echo $char;  // Output: 膓

Ruby:

char = "\u{8193}"
puts char  # Output: 膓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008193";  /* Display: 膓 */
}

HTML Decimal:

<p>HTML decimal: &#33171;</p>  <!-- Display: 膓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8193;</p>  <!-- Display: 膓 -->

URL Encoding:

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

Encodings

MD5:

77a64a2d235575f3f521592eb7b5d335

SHA1:

47944a8a67e5f8cb6bf58c381be4c9aca7ecbee0

Base64:

6IaT