Unicode Finder

"斶" U+65B6(CJK UNIFIED IDEOGRAPH-65B6)

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

Programming

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

Web

CSS
\0065B6
HtmlDecimal
斶
HtmlHexadecimal
斶
Url
%E6%96%B6

Code

MD5
0a7c62a86a59dfaf47c4d5ec57e7ae3d
Sha1
3d4e282de0b9a35eab02d5b3b63b4b5c03b2ed57
Base64
5pa2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65B6';
console.log(char);  // Output: 斶

Java:

char c = '\u65B6';
System.out.println(c);  // Output: 斶

JSON:

{"text": "\u65B6"}  // Value: 斶

Python:

char = '\u65B6'
print(char)  # Output: 斶

Perl:

my $char = "\x{65B6}";
print $char;  # Output: 斶

PHP:

$char = "\x{65B6}";
echo $char;  // Output: 斶

Ruby:

char = "\u{65B6}"
puts char  # Output: 斶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26038;</p>  <!-- Display: 斶 -->

HTML Hexadecimal:

<p>HTML hex: &#x65B6;</p>  <!-- Display: 斶 -->

URL Encoding:

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

Encodings

MD5:

0a7c62a86a59dfaf47c4d5ec57e7ae3d

SHA1:

3d4e282de0b9a35eab02d5b3b63b4b5c03b2ed57

Base64:

5pa2