Unicode Finder

"捀" U+6340(CJK UNIFIED IDEOGRAPH-6340)

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

Programming

C
\u6340
JavaScript
\u6340
Java
\u6340
Json
\u6340
Python
\u6340
Perl
\x{6340}
PHP
\x{6340}
Ruby
\u{6340}
Rust
\u{6340}
Go
\u6340

Web

CSS
\006340
HtmlDecimal
捀
HtmlHexadecimal
捀
Url
%E6%8D%80

Code

MD5
3d05bb5d38b472830dfa16c7082417e9
Sha1
d246114ab90519804644e853fdfd04e87308a007
Base64
5o2A

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6340';
console.log(char);  // Output: 捀

Java:

char c = '\u6340';
System.out.println(c);  // Output: 捀

JSON:

{"text": "\u6340"}  // Value: 捀

Python:

char = '\u6340'
print(char)  # Output: 捀

Perl:

my $char = "\x{6340}";
print $char;  # Output: 捀

PHP:

$char = "\x{6340}";
echo $char;  // Output: 捀

Ruby:

char = "\u{6340}"
puts char  # Output: 捀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006340";  /* Display: 捀 */
}

HTML Decimal:

<p>HTML decimal: &#25408;</p>  <!-- Display: 捀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6340;</p>  <!-- Display: 捀 -->

URL Encoding:

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

Encodings

MD5:

3d05bb5d38b472830dfa16c7082417e9

SHA1:

d246114ab90519804644e853fdfd04e87308a007

Base64:

5o2A