Unicode Finder

"莕" U+8395(CJK UNIFIED IDEOGRAPH-8395)

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

Programming

C
\u8395
JavaScript
\u8395
Java
\u8395
Json
\u8395
Python
\u8395
Perl
\x{8395}
PHP
\x{8395}
Ruby
\u{8395}
Rust
\u{8395}
Go
\u8395

Web

CSS
\008395
HtmlDecimal
莕
HtmlHexadecimal
莕
Url
%E8%8E%95

Code

MD5
7fbce1080f6ad858d5292fcb98f6fb91
Sha1
362dc61a31483e6284cf6852c0af1c947b763d11
Base64
6I6V

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8395';
console.log(char);  // Output: 莕

Java:

char c = '\u8395';
System.out.println(c);  // Output: 莕

JSON:

{"text": "\u8395"}  // Value: 莕

Python:

char = '\u8395'
print(char)  # Output: 莕

Perl:

my $char = "\x{8395}";
print $char;  # Output: 莕

PHP:

$char = "\x{8395}";
echo $char;  // Output: 莕

Ruby:

char = "\u{8395}"
puts char  # Output: 莕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008395";  /* Display: 莕 */
}

HTML Decimal:

<p>HTML decimal: &#33685;</p>  <!-- Display: 莕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8395;</p>  <!-- Display: 莕 -->

URL Encoding:

// 莕 URL encoding
https://unicodefinder.com/search.php?query=%E8%8E%95

Encodings

MD5:

7fbce1080f6ad858d5292fcb98f6fb91

SHA1:

362dc61a31483e6284cf6852c0af1c947b763d11

Base64:

6I6V