Unicode Finder

"拄" U+62C4(CJK UNIFIED IDEOGRAPH-62C4)

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

Programming

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

Web

CSS
\0062C4
HtmlDecimal
拄
HtmlHexadecimal
拄
Url
%E6%8B%84

Code

MD5
204017e45f10de9c27094ccb20838a8d
Sha1
454a2f0736af08e2d79ff2b3050b94d5a1109397
Base64
5ouE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62C4';
console.log(char);  // Output: 拄

Java:

char c = '\u62C4';
System.out.println(c);  // Output: 拄

JSON:

{"text": "\u62C4"}  // Value: 拄

Python:

char = '\u62C4'
print(char)  # Output: 拄

Perl:

my $char = "\x{62C4}";
print $char;  # Output: 拄

PHP:

$char = "\x{62C4}";
echo $char;  // Output: 拄

Ruby:

char = "\u{62C4}"
puts char  # Output: 拄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25284;</p>  <!-- Display: 拄 -->

HTML Hexadecimal:

<p>HTML hex: &#x62C4;</p>  <!-- Display: 拄 -->

URL Encoding:

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

Encodings

MD5:

204017e45f10de9c27094ccb20838a8d

SHA1:

454a2f0736af08e2d79ff2b3050b94d5a1109397

Base64:

5ouE