Unicode Finder

"膒" U+8192(CJK UNIFIED IDEOGRAPH-8192)

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

Programming

C
\u8192
JavaScript
\u8192
Java
\u8192
Json
\u8192
Python
\u8192
Perl
\x{8192}
PHP
\x{8192}
Ruby
\u{8192}
Rust
\u{8192}
Go
\u8192

Web

CSS
\008192
HtmlDecimal
膒
HtmlHexadecimal
膒
Url
%E8%86%92

Code

MD5
55054685ee4efc4f94165438049f775c
Sha1
75144b521acb3c77aa783ca47cdd5afcd9acedd9
Base64
6IaS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8192';
console.log(char);  // Output: 膒

Java:

char c = '\u8192';
System.out.println(c);  // Output: 膒

JSON:

{"text": "\u8192"}  // Value: 膒

Python:

char = '\u8192'
print(char)  # Output: 膒

Perl:

my $char = "\x{8192}";
print $char;  # Output: 膒

PHP:

$char = "\x{8192}";
echo $char;  // Output: 膒

Ruby:

char = "\u{8192}"
puts char  # Output: 膒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008192";  /* Display: 膒 */
}

HTML Decimal:

<p>HTML decimal: &#33170;</p>  <!-- Display: 膒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8192;</p>  <!-- Display: 膒 -->

URL Encoding:

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

Encodings

MD5:

55054685ee4efc4f94165438049f775c

SHA1:

75144b521acb3c77aa783ca47cdd5afcd9acedd9

Base64:

6IaS