Unicode Finder

"掁" U+6381(CJK UNIFIED IDEOGRAPH-6381)

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

Programming

C
\u6381
JavaScript
\u6381
Java
\u6381
Json
\u6381
Python
\u6381
Perl
\x{6381}
PHP
\x{6381}
Ruby
\u{6381}
Rust
\u{6381}
Go
\u6381

Web

CSS
\006381
HtmlDecimal
掁
HtmlHexadecimal
掁
Url
%E6%8E%81

Code

MD5
a65e30bb88e8e85b9fddf2e14baec194
Sha1
5d54482fa6efcbe48be97268eb6e209a6b369c2d
Base64
5o6B

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6381';
console.log(char);  // Output: 掁

Java:

char c = '\u6381';
System.out.println(c);  // Output: 掁

JSON:

{"text": "\u6381"}  // Value: 掁

Python:

char = '\u6381'
print(char)  # Output: 掁

Perl:

my $char = "\x{6381}";
print $char;  # Output: 掁

PHP:

$char = "\x{6381}";
echo $char;  // Output: 掁

Ruby:

char = "\u{6381}"
puts char  # Output: 掁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006381";  /* Display: 掁 */
}

HTML Decimal:

<p>HTML decimal: &#25473;</p>  <!-- Display: 掁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6381;</p>  <!-- Display: 掁 -->

URL Encoding:

// 掁 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%81

Encodings

MD5:

a65e30bb88e8e85b9fddf2e14baec194

SHA1:

5d54482fa6efcbe48be97268eb6e209a6b369c2d

Base64:

5o6B