Unicode Finder

"拙" U+62D9(CJK UNIFIED IDEOGRAPH-62D9)

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

Programming

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

Web

CSS
\0062D9
HtmlDecimal
拙
HtmlHexadecimal
拙
Url
%E6%8B%99

Code

MD5
da6cd52aeb3ceff25bb653b068fa8d7c
Sha1
a5ed19a463b4f084c41bc29b0df8744c14186bbe
Base64
5ouZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62D9';
console.log(char);  // Output: 拙

Java:

char c = '\u62D9';
System.out.println(c);  // Output: 拙

JSON:

{"text": "\u62D9"}  // Value: 拙

Python:

char = '\u62D9'
print(char)  # Output: 拙

Perl:

my $char = "\x{62D9}";
print $char;  # Output: 拙

PHP:

$char = "\x{62D9}";
echo $char;  // Output: 拙

Ruby:

char = "\u{62D9}"
puts char  # Output: 拙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25305;</p>  <!-- Display: 拙 -->

HTML Hexadecimal:

<p>HTML hex: &#x62D9;</p>  <!-- Display: 拙 -->

URL Encoding:

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

Encodings

MD5:

da6cd52aeb3ceff25bb653b068fa8d7c

SHA1:

a5ed19a463b4f084c41bc29b0df8744c14186bbe

Base64:

5ouZ