Unicode Finder

"捣" U+6363(CJK UNIFIED IDEOGRAPH-6363)

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

Programming

C
\u6363
JavaScript
\u6363
Java
\u6363
Json
\u6363
Python
\u6363
Perl
\x{6363}
PHP
\x{6363}
Ruby
\u{6363}
Rust
\u{6363}
Go
\u6363

Web

CSS
\006363
HtmlDecimal
捣
HtmlHexadecimal
捣
Url
%E6%8D%A3

Code

MD5
3dec9a933af210c78f0703bf4394131a
Sha1
099936c08d4486ea229f096f28d78a50cbba767e
Base64
5o2j

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6363';
console.log(char);  // Output: 捣

Java:

char c = '\u6363';
System.out.println(c);  // Output: 捣

JSON:

{"text": "\u6363"}  // Value: 捣

Python:

char = '\u6363'
print(char)  # Output: 捣

Perl:

my $char = "\x{6363}";
print $char;  # Output: 捣

PHP:

$char = "\x{6363}";
echo $char;  // Output: 捣

Ruby:

char = "\u{6363}"
puts char  # Output: 捣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006363";  /* Display: 捣 */
}

HTML Decimal:

<p>HTML decimal: &#25443;</p>  <!-- Display: 捣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6363;</p>  <!-- Display: 捣 -->

URL Encoding:

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

Encodings

MD5:

3dec9a933af210c78f0703bf4394131a

SHA1:

099936c08d4486ea229f096f28d78a50cbba767e

Base64:

5o2j