Unicode Finder

"斞" U+659E(CJK UNIFIED IDEOGRAPH-659E)

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

Programming

C
\u659E
JavaScript
\u659E
Java
\u659E
Json
\u659E
Python
\u659E
Perl
\x{659E}
PHP
\x{659E}
Ruby
\u{659E}
Rust
\u{659E}
Go
\u659E

Web

CSS
\00659E
HtmlDecimal
斞
HtmlHexadecimal
斞
Url
%E6%96%9E

Code

MD5
034cf62c8c8918d689b6074385fb2a1e
Sha1
392af6d4d902e0d49794e9958dcb59421651e440
Base64
5pae

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u659E';
console.log(char);  // Output: 斞

Java:

char c = '\u659E';
System.out.println(c);  // Output: 斞

JSON:

{"text": "\u659E"}  // Value: 斞

Python:

char = '\u659E'
print(char)  # Output: 斞

Perl:

my $char = "\x{659E}";
print $char;  # Output: 斞

PHP:

$char = "\x{659E}";
echo $char;  // Output: 斞

Ruby:

char = "\u{659E}"
puts char  # Output: 斞

Rust:

let c = '\u{659E}';
println!("{}", c);  // Output: 斞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00659E";  /* Display: 斞 */
}

HTML Decimal:

<p>HTML decimal: &#26014;</p>  <!-- Display: 斞 -->

HTML Hexadecimal:

<p>HTML hex: &#x659E;</p>  <!-- Display: 斞 -->

URL Encoding:

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

Encodings

MD5:

034cf62c8c8918d689b6074385fb2a1e

SHA1:

392af6d4d902e0d49794e9958dcb59421651e440

Base64:

5pae