Unicode Finder

"斛" U+659B(CJK UNIFIED IDEOGRAPH-659B)

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

Programming

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

Web

CSS
\00659B
HtmlDecimal
斛
HtmlHexadecimal
斛
Url
%E6%96%9B

Code

MD5
826a8c769d2a7dde3bd3b407b80396ba
Sha1
0222dc68ff9dbbd5679bc2a5faf989648713cb5b
Base64
5pab

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u659B';
console.log(char);  // Output: 斛

Java:

char c = '\u659B';
System.out.println(c);  // Output: 斛

JSON:

{"text": "\u659B"}  // Value: 斛

Python:

char = '\u659B'
print(char)  # Output: 斛

Perl:

my $char = "\x{659B}";
print $char;  # Output: 斛

PHP:

$char = "\x{659B}";
echo $char;  // Output: 斛

Ruby:

char = "\u{659B}"
puts char  # Output: 斛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26011;</p>  <!-- Display: 斛 -->

HTML Hexadecimal:

<p>HTML hex: &#x659B;</p>  <!-- Display: 斛 -->

URL Encoding:

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

Encodings

MD5:

826a8c769d2a7dde3bd3b407b80396ba

SHA1:

0222dc68ff9dbbd5679bc2a5faf989648713cb5b

Base64:

5pab