Unicode Finder

"掃" U+6383(CJK UNIFIED IDEOGRAPH-6383)

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

Programming

C
\u6383
JavaScript
\u6383
Java
\u6383
Json
\u6383
Python
\u6383
Perl
\x{6383}
PHP
\x{6383}
Ruby
\u{6383}
Rust
\u{6383}
Go
\u6383

Web

CSS
\006383
HtmlDecimal
掃
HtmlHexadecimal
掃
Url
%E6%8E%83

Code

MD5
64551f3b1ed21ec5176ca0dc6898b52e
Sha1
aa04cb353ca34a3f0779c9779707d66a0135ec5c
Base64
5o6D

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6383';
console.log(char);  // Output: 掃

Java:

char c = '\u6383';
System.out.println(c);  // Output: 掃

JSON:

{"text": "\u6383"}  // Value: 掃

Python:

char = '\u6383'
print(char)  # Output: 掃

Perl:

my $char = "\x{6383}";
print $char;  # Output: 掃

PHP:

$char = "\x{6383}";
echo $char;  // Output: 掃

Ruby:

char = "\u{6383}"
puts char  # Output: 掃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006383";  /* Display: 掃 */
}

HTML Decimal:

<p>HTML decimal: &#25475;</p>  <!-- Display: 掃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6383;</p>  <!-- Display: 掃 -->

URL Encoding:

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

Encodings

MD5:

64551f3b1ed21ec5176ca0dc6898b52e

SHA1:

aa04cb353ca34a3f0779c9779707d66a0135ec5c

Base64:

5o6D