Unicode Finder

"拐" U+62D0(CJK UNIFIED IDEOGRAPH-62D0)

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

Programming

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

Web

CSS
\0062D0
HtmlDecimal
拐
HtmlHexadecimal
拐
Url
%E6%8B%90

Code

MD5
d1a0c1192e99df86d49f6166f85f5812
Sha1
41aacc6d482a7134a999581d1b70673277011403
Base64
5ouQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u62D0';
console.log(char);  // Output: 拐

Java:

char c = '\u62D0';
System.out.println(c);  // Output: 拐

JSON:

{"text": "\u62D0"}  // Value: 拐

Python:

char = '\u62D0'
print(char)  # Output: 拐

Perl:

my $char = "\x{62D0}";
print $char;  # Output: 拐

PHP:

$char = "\x{62D0}";
echo $char;  // Output: 拐

Ruby:

char = "\u{62D0}"
puts char  # Output: 拐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25296;</p>  <!-- Display: 拐 -->

HTML Hexadecimal:

<p>HTML hex: &#x62D0;</p>  <!-- Display: 拐 -->

URL Encoding:

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

Encodings

MD5:

d1a0c1192e99df86d49f6166f85f5812

SHA1:

41aacc6d482a7134a999581d1b70673277011403

Base64:

5ouQ