Unicode Finder

"莔" U+8394(CJK UNIFIED IDEOGRAPH-8394)

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

Programming

C
\u8394
JavaScript
\u8394
Java
\u8394
Json
\u8394
Python
\u8394
Perl
\x{8394}
PHP
\x{8394}
Ruby
\u{8394}
Rust
\u{8394}
Go
\u8394

Web

CSS
\008394
HtmlDecimal
莔
HtmlHexadecimal
莔
Url
%E8%8E%94

Code

MD5
0146490ca2a17e24c23a4625d8395f63
Sha1
1365d55bd697216406bb3737e96aecd2df817e22
Base64
6I6U

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8394';
console.log(char);  // Output: 莔

Java:

char c = '\u8394';
System.out.println(c);  // Output: 莔

JSON:

{"text": "\u8394"}  // Value: 莔

Python:

char = '\u8394'
print(char)  # Output: 莔

Perl:

my $char = "\x{8394}";
print $char;  # Output: 莔

PHP:

$char = "\x{8394}";
echo $char;  // Output: 莔

Ruby:

char = "\u{8394}"
puts char  # Output: 莔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008394";  /* Display: 莔 */
}

HTML Decimal:

<p>HTML decimal: &#33684;</p>  <!-- Display: 莔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8394;</p>  <!-- Display: 莔 -->

URL Encoding:

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

Encodings

MD5:

0146490ca2a17e24c23a4625d8395f63

SHA1:

1365d55bd697216406bb3737e96aecd2df817e22

Base64:

6I6U