Unicode Finder

"膕" U+8195(CJK UNIFIED IDEOGRAPH-8195)

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

Programming

C
\u8195
JavaScript
\u8195
Java
\u8195
Json
\u8195
Python
\u8195
Perl
\x{8195}
PHP
\x{8195}
Ruby
\u{8195}
Rust
\u{8195}
Go
\u8195

Web

CSS
\008195
HtmlDecimal
膕
HtmlHexadecimal
膕
Url
%E8%86%95

Code

MD5
6d1a704f19ff18014ed0ea96521db26e
Sha1
63cc804a2e3fa55bcd45ef7ab1776c26d7032c59
Base64
6IaV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8195';
console.log(char);  // Output: 膕

Java:

char c = '\u8195';
System.out.println(c);  // Output: 膕

JSON:

{"text": "\u8195"}  // Value: 膕

Python:

char = '\u8195'
print(char)  # Output: 膕

Perl:

my $char = "\x{8195}";
print $char;  # Output: 膕

PHP:

$char = "\x{8195}";
echo $char;  // Output: 膕

Ruby:

char = "\u{8195}"
puts char  # Output: 膕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008195";  /* Display: 膕 */
}

HTML Decimal:

<p>HTML decimal: &#33173;</p>  <!-- Display: 膕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8195;</p>  <!-- Display: 膕 -->

URL Encoding:

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

Encodings

MD5:

6d1a704f19ff18014ed0ea96521db26e

SHA1:

63cc804a2e3fa55bcd45ef7ab1776c26d7032c59

Base64:

6IaV