Unicode Finder

"捃" U+6343(CJK UNIFIED IDEOGRAPH-6343)

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

Programming

C
\u6343
JavaScript
\u6343
Java
\u6343
Json
\u6343
Python
\u6343
Perl
\x{6343}
PHP
\x{6343}
Ruby
\u{6343}
Rust
\u{6343}
Go
\u6343

Web

CSS
\006343
HtmlDecimal
捃
HtmlHexadecimal
捃
Url
%E6%8D%83

Code

MD5
073cbdbee4ff8bd6864128d2acf426a2
Sha1
5d6d60df6a8aa89162ba6935b6e622e8e7baf973
Base64
5o2D

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6343';
console.log(char);  // Output: 捃

Java:

char c = '\u6343';
System.out.println(c);  // Output: 捃

JSON:

{"text": "\u6343"}  // Value: 捃

Python:

char = '\u6343'
print(char)  # Output: 捃

Perl:

my $char = "\x{6343}";
print $char;  # Output: 捃

PHP:

$char = "\x{6343}";
echo $char;  // Output: 捃

Ruby:

char = "\u{6343}"
puts char  # Output: 捃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006343";  /* Display: 捃 */
}

HTML Decimal:

<p>HTML decimal: &#25411;</p>  <!-- Display: 捃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6343;</p>  <!-- Display: 捃 -->

URL Encoding:

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

Encodings

MD5:

073cbdbee4ff8bd6864128d2acf426a2

SHA1:

5d6d60df6a8aa89162ba6935b6e622e8e7baf973

Base64:

5o2D