Unicode Finder

"斢" U+65A2(CJK UNIFIED IDEOGRAPH-65A2)

U+65A2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-65A2

Programming

C
\u65A2
JavaScript
\u65A2
Java
\u65A2
Json
\u65A2
Python
\u65A2
Perl
\x{65A2}
PHP
\x{65A2}
Ruby
\u{65A2}
Rust
\u{65A2}
Go
\u65A2

Web

CSS
\0065A2
HtmlDecimal
斢
HtmlHexadecimal
斢
Url
%E6%96%A2

Code

MD5
3bcb99275bc6901519674ae11e7e69b1
Sha1
a16482511ec6b9acfca658a208ff79b83a151a72
Base64
5pai

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65A2';
console.log(char);  // Output: 斢

Java:

char c = '\u65A2';
System.out.println(c);  // Output: 斢

JSON:

{"text": "\u65A2"}  // Value: 斢

Python:

char = '\u65A2'
print(char)  # Output: 斢

Perl:

my $char = "\x{65A2}";
print $char;  # Output: 斢

PHP:

$char = "\x{65A2}";
echo $char;  // Output: 斢

Ruby:

char = "\u{65A2}"
puts char  # Output: 斢

Rust:

let c = '\u{65A2}';
println!("{}", c);  // Output: 斢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065A2";  /* Display: 斢 */
}

HTML Decimal:

<p>HTML decimal: &#26018;</p>  <!-- Display: 斢 -->

HTML Hexadecimal:

<p>HTML hex: &#x65A2;</p>  <!-- Display: 斢 -->

URL Encoding:

// 斢 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%A2

Encodings

MD5:

3bcb99275bc6901519674ae11e7e69b1

SHA1:

a16482511ec6b9acfca658a208ff79b83a151a72

Base64:

5pai