Unicode Finder

"斖" U+6596(CJK UNIFIED IDEOGRAPH-6596)

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

Programming

C
\u6596
JavaScript
\u6596
Java
\u6596
Json
\u6596
Python
\u6596
Perl
\x{6596}
PHP
\x{6596}
Ruby
\u{6596}
Rust
\u{6596}
Go
\u6596

Web

CSS
\006596
HtmlDecimal
斖
HtmlHexadecimal
斖
Url
%E6%96%96

Code

MD5
72bd0a5dd99be6c4c7dc84d05a4d1681
Sha1
1c06fd9ec6d20e0c419c518426b38d49c1fb8907
Base64
5paW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6596';
console.log(char);  // Output: 斖

Java:

char c = '\u6596';
System.out.println(c);  // Output: 斖

JSON:

{"text": "\u6596"}  // Value: 斖

Python:

char = '\u6596'
print(char)  # Output: 斖

Perl:

my $char = "\x{6596}";
print $char;  # Output: 斖

PHP:

$char = "\x{6596}";
echo $char;  // Output: 斖

Ruby:

char = "\u{6596}"
puts char  # Output: 斖

Rust:

let c = '\u{6596}';
println!("{}", c);  // Output: 斖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006596";  /* Display: 斖 */
}

HTML Decimal:

<p>HTML decimal: &#26006;</p>  <!-- Display: 斖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6596;</p>  <!-- Display: 斖 -->

URL Encoding:

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

Encodings

MD5:

72bd0a5dd99be6c4c7dc84d05a4d1681

SHA1:

1c06fd9ec6d20e0c419c518426b38d49c1fb8907

Base64:

5paW