Unicode Finder

"拜" U+62DC(CJK UNIFIED IDEOGRAPH-62DC)

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

Programming

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

Web

CSS
\0062DC
HtmlDecimal
拜
HtmlHexadecimal
拜
Url
%E6%8B%9C

Code

MD5
5b358d3e857da0ba6e814bf2e861531e
Sha1
cbc51f1ccd3e37ffb659017d1fc7147bb50fc7d4
Base64
5ouc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62DC';
console.log(char);  // Output: 拜

Java:

char c = '\u62DC';
System.out.println(c);  // Output: 拜

JSON:

{"text": "\u62DC"}  // Value: 拜

Python:

char = '\u62DC'
print(char)  # Output: 拜

Perl:

my $char = "\x{62DC}";
print $char;  # Output: 拜

PHP:

$char = "\x{62DC}";
echo $char;  // Output: 拜

Ruby:

char = "\u{62DC}"
puts char  # Output: 拜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25308;</p>  <!-- Display: 拜 -->

HTML Hexadecimal:

<p>HTML hex: &#x62DC;</p>  <!-- Display: 拜 -->

URL Encoding:

// 拜 URL encoding
https://unicodefinder.com/search.php?query=%E6%8B%9C

Encodings

MD5:

5b358d3e857da0ba6e814bf2e861531e

SHA1:

cbc51f1ccd3e37ffb659017d1fc7147bb50fc7d4

Base64:

5ouc