Unicode Finder

"莟" U+839F(CJK UNIFIED IDEOGRAPH-839F)

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

Programming

C
\u839F
JavaScript
\u839F
Java
\u839F
Json
\u839F
Python
\u839F
Perl
\x{839F}
PHP
\x{839F}
Ruby
\u{839F}
Rust
\u{839F}
Go
\u839F

Web

CSS
\00839F
HtmlDecimal
莟
HtmlHexadecimal
莟
Url
%E8%8E%9F

Code

MD5
1963dec9be8e0d8682cd39e99608a284
Sha1
f98415a390f6a8e5ce927232149c0ea052576965
Base64
6I6f

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u839F';
console.log(char);  // Output: 莟

Java:

char c = '\u839F';
System.out.println(c);  // Output: 莟

JSON:

{"text": "\u839F"}  // Value: 莟

Python:

char = '\u839F'
print(char)  # Output: 莟

Perl:

my $char = "\x{839F}";
print $char;  # Output: 莟

PHP:

$char = "\x{839F}";
echo $char;  // Output: 莟

Ruby:

char = "\u{839F}"
puts char  # Output: 莟

Rust:

let c = '\u{839F}';
println!("{}", c);  // Output: 莟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00839F";  /* Display: 莟 */
}

HTML Decimal:

<p>HTML decimal: &#33695;</p>  <!-- Display: 莟 -->

HTML Hexadecimal:

<p>HTML hex: &#x839F;</p>  <!-- Display: 莟 -->

URL Encoding:

// 莟 URL encoding
https://unicodefinder.com/search.php?query=%E8%8E%9F

Encodings

MD5:

1963dec9be8e0d8682cd39e99608a284

SHA1:

f98415a390f6a8e5ce927232149c0ea052576965

Base64:

6I6f