Unicode Finder

"拉" U+62C9(CJK UNIFIED IDEOGRAPH-62C9)

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

Programming

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

Web

CSS
\0062C9
HtmlDecimal
拉
HtmlHexadecimal
拉
Url
%E6%8B%89

Code

MD5
4e195a21aac1f6f9229b29d086077331
Sha1
d6cd1c8761b620b46bdfe6b6c3a2068b266c9d05
Base64
5ouJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62C9';
console.log(char);  // Output: 拉

Java:

char c = '\u62C9';
System.out.println(c);  // Output: 拉

JSON:

{"text": "\u62C9"}  // Value: 拉

Python:

char = '\u62C9'
print(char)  # Output: 拉

Perl:

my $char = "\x{62C9}";
print $char;  # Output: 拉

PHP:

$char = "\x{62C9}";
echo $char;  // Output: 拉

Ruby:

char = "\u{62C9}"
puts char  # Output: 拉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25289;</p>  <!-- Display: 拉 -->

HTML Hexadecimal:

<p>HTML hex: &#x62C9;</p>  <!-- Display: 拉 -->

URL Encoding:

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

Encodings

MD5:

4e195a21aac1f6f9229b29d086077331

SHA1:

d6cd1c8761b620b46bdfe6b6c3a2068b266c9d05

Base64:

5ouJ