Unicode Finder

"捖" U+6356(CJK UNIFIED IDEOGRAPH-6356)

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

Programming

C
\u6356
JavaScript
\u6356
Java
\u6356
Json
\u6356
Python
\u6356
Perl
\x{6356}
PHP
\x{6356}
Ruby
\u{6356}
Rust
\u{6356}
Go
\u6356

Web

CSS
\006356
HtmlDecimal
捖
HtmlHexadecimal
捖
Url
%E6%8D%96

Code

MD5
891ec5defbc515ad3a754e45feb677ef
Sha1
90b30dab844560fc693f62a3078943c0bfedf7c3
Base64
5o2W

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6356';
console.log(char);  // Output: 捖

Java:

char c = '\u6356';
System.out.println(c);  // Output: 捖

JSON:

{"text": "\u6356"}  // Value: 捖

Python:

char = '\u6356'
print(char)  # Output: 捖

Perl:

my $char = "\x{6356}";
print $char;  # Output: 捖

PHP:

$char = "\x{6356}";
echo $char;  // Output: 捖

Ruby:

char = "\u{6356}"
puts char  # Output: 捖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006356";  /* Display: 捖 */
}

HTML Decimal:

<p>HTML decimal: &#25430;</p>  <!-- Display: 捖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6356;</p>  <!-- Display: 捖 -->

URL Encoding:

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

Encodings

MD5:

891ec5defbc515ad3a754e45feb677ef

SHA1:

90b30dab844560fc693f62a3078943c0bfedf7c3

Base64:

5o2W