Unicode Finder

"拳" U+62F3(CJK UNIFIED IDEOGRAPH-62F3)

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

Programming

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

Web

CSS
\0062F3
HtmlDecimal
拳
HtmlHexadecimal
拳
Url
%E6%8B%B3

Code

MD5
3e1dea525b28b8f2e7c71971f3319c72
Sha1
0c6acafaa3a7d00dfe2d164218d8760e11c1498c
Base64
5ouz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62F3';
console.log(char);  // Output: 拳

Java:

char c = '\u62F3';
System.out.println(c);  // Output: 拳

JSON:

{"text": "\u62F3"}  // Value: 拳

Python:

char = '\u62F3'
print(char)  # Output: 拳

Perl:

my $char = "\x{62F3}";
print $char;  # Output: 拳

PHP:

$char = "\x{62F3}";
echo $char;  // Output: 拳

Ruby:

char = "\u{62F3}"
puts char  # Output: 拳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25331;</p>  <!-- Display: 拳 -->

HTML Hexadecimal:

<p>HTML hex: &#x62F3;</p>  <!-- Display: 拳 -->

URL Encoding:

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

Encodings

MD5:

3e1dea525b28b8f2e7c71971f3319c72

SHA1:

0c6acafaa3a7d00dfe2d164218d8760e11c1498c

Base64:

5ouz