Unicode Finder

"拈" U+62C8(CJK UNIFIED IDEOGRAPH-62C8)

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

Programming

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

Web

CSS
\0062C8
HtmlDecimal
拈
HtmlHexadecimal
拈
Url
%E6%8B%88

Code

MD5
c0ea9d1ffcd51bd6b26cc7f26ab92117
Sha1
500ed5a1d48747e4bf8f11b1ddadcb13151feb96
Base64
5ouI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62C8';
console.log(char);  // Output: 拈

Java:

char c = '\u62C8';
System.out.println(c);  // Output: 拈

JSON:

{"text": "\u62C8"}  // Value: 拈

Python:

char = '\u62C8'
print(char)  # Output: 拈

Perl:

my $char = "\x{62C8}";
print $char;  # Output: 拈

PHP:

$char = "\x{62C8}";
echo $char;  // Output: 拈

Ruby:

char = "\u{62C8}"
puts char  # Output: 拈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25288;</p>  <!-- Display: 拈 -->

HTML Hexadecimal:

<p>HTML hex: &#x62C8;</p>  <!-- Display: 拈 -->

URL Encoding:

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

Encodings

MD5:

c0ea9d1ffcd51bd6b26cc7f26ab92117

SHA1:

500ed5a1d48747e4bf8f11b1ddadcb13151feb96

Base64:

5ouI