Unicode Finder

"拀" U+62C0(CJK UNIFIED IDEOGRAPH-62C0)

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

Programming

C
\u62C0
JavaScript
\u62C0
Java
\u62C0
Json
\u62C0
Python
\u62C0
Perl
\x{62C0}
PHP
\x{62C0}
Ruby
\u{62C0}
Rust
\u{62C0}
Go
\u62C0

Web

CSS
\0062C0
HtmlDecimal
拀
HtmlHexadecimal
拀
Url
%E6%8B%80

Code

MD5
2cd663b883701e0e4a833b9614d96eaf
Sha1
146588af7ea87a0500251e5526c89ac20bf0d9a0
Base64
5ouA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62C0';
console.log(char);  // Output: 拀

Java:

char c = '\u62C0';
System.out.println(c);  // Output: 拀

JSON:

{"text": "\u62C0"}  // Value: 拀

Python:

char = '\u62C0'
print(char)  # Output: 拀

Perl:

my $char = "\x{62C0}";
print $char;  # Output: 拀

PHP:

$char = "\x{62C0}";
echo $char;  // Output: 拀

Ruby:

char = "\u{62C0}"
puts char  # Output: 拀

Rust:

let c = '\u{62C0}';
println!("{}", c);  // Output: 拀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0062C0";  /* Display: 拀 */
}

HTML Decimal:

<p>HTML decimal: &#25280;</p>  <!-- Display: 拀 -->

HTML Hexadecimal:

<p>HTML hex: &#x62C0;</p>  <!-- Display: 拀 -->

URL Encoding:

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

Encodings

MD5:

2cd663b883701e0e4a833b9614d96eaf

SHA1:

146588af7ea87a0500251e5526c89ac20bf0d9a0

Base64:

5ouA