Unicode Finder

"拞" U+62DE(CJK UNIFIED IDEOGRAPH-62DE)

U+62DE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-62DE

Programming

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

Web

CSS
\0062DE
HtmlDecimal
拞
HtmlHexadecimal
拞
Url
%E6%8B%9E

Code

MD5
609332ac7e461f21f6eb8a78961673e9
Sha1
36f88fcf29b4c3a9877afb1124f9b7f7448e9cf5
Base64
5oue

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u62DE';
console.log(char);  // Output: 拞

Java:

char c = '\u62DE';
System.out.println(c);  // Output: 拞

JSON:

{"text": "\u62DE"}  // Value: 拞

Python:

char = '\u62DE'
print(char)  # Output: 拞

Perl:

my $char = "\x{62DE}";
print $char;  # Output: 拞

PHP:

$char = "\x{62DE}";
echo $char;  // Output: 拞

Ruby:

char = "\u{62DE}"
puts char  # Output: 拞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25310;</p>  <!-- Display: 拞 -->

HTML Hexadecimal:

<p>HTML hex: &#x62DE;</p>  <!-- Display: 拞 -->

URL Encoding:

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

Encodings

MD5:

609332ac7e461f21f6eb8a78961673e9

SHA1:

36f88fcf29b4c3a9877afb1124f9b7f7448e9cf5

Base64:

5oue