Unicode Finder

"萛" U+841B(CJK UNIFIED IDEOGRAPH-841B)

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

Programming

C
\u841B
JavaScript
\u841B
Java
\u841B
Json
\u841B
Python
\u841B
Perl
\x{841B}
PHP
\x{841B}
Ruby
\u{841B}
Rust
\u{841B}
Go
\u841B

Web

CSS
\00841B
HtmlDecimal
萛
HtmlHexadecimal
萛
Url
%E8%90%9B

Code

MD5
416848a6ae11c1a28fc28127ba5107dd
Sha1
b7c64e6fc825c66188ec5f6c040ba5370d2e1f83
Base64
6JCb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u841B';
console.log(char);  // Output: 萛

Java:

char c = '\u841B';
System.out.println(c);  // Output: 萛

JSON:

{"text": "\u841B"}  // Value: 萛

Python:

char = '\u841B'
print(char)  # Output: 萛

Perl:

my $char = "\x{841B}";
print $char;  # Output: 萛

PHP:

$char = "\x{841B}";
echo $char;  // Output: 萛

Ruby:

char = "\u{841B}"
puts char  # Output: 萛

Rust:

let c = '\u{841B}';
println!("{}", c);  // Output: 萛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00841B";  /* Display: 萛 */
}

HTML Decimal:

<p>HTML decimal: &#33819;</p>  <!-- Display: 萛 -->

HTML Hexadecimal:

<p>HTML hex: &#x841B;</p>  <!-- Display: 萛 -->

URL Encoding:

// 萛 URL encoding
https://unicodefinder.com/search.php?query=%E8%90%9B

Encodings

MD5:

416848a6ae11c1a28fc28127ba5107dd

SHA1:

b7c64e6fc825c66188ec5f6c040ba5370d2e1f83

Base64:

6JCb