Unicode Finder

"斔" U+6594(CJK UNIFIED IDEOGRAPH-6594)

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

Programming

C
\u6594
JavaScript
\u6594
Java
\u6594
Json
\u6594
Python
\u6594
Perl
\x{6594}
PHP
\x{6594}
Ruby
\u{6594}
Rust
\u{6594}
Go
\u6594

Web

CSS
\006594
HtmlDecimal
斔
HtmlHexadecimal
斔
Url
%E6%96%94

Code

MD5
d25d70bd80721a6fbf7517b3451d34bf
Sha1
662bcabf9ce6aa8373b97acc840f05b487d45c15
Base64
5paU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6594';
console.log(char);  // Output: 斔

Java:

char c = '\u6594';
System.out.println(c);  // Output: 斔

JSON:

{"text": "\u6594"}  // Value: 斔

Python:

char = '\u6594'
print(char)  # Output: 斔

Perl:

my $char = "\x{6594}";
print $char;  # Output: 斔

PHP:

$char = "\x{6594}";
echo $char;  // Output: 斔

Ruby:

char = "\u{6594}"
puts char  # Output: 斔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006594";  /* Display: 斔 */
}

HTML Decimal:

<p>HTML decimal: &#26004;</p>  <!-- Display: 斔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6594;</p>  <!-- Display: 斔 -->

URL Encoding:

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

Encodings

MD5:

d25d70bd80721a6fbf7517b3451d34bf

SHA1:

662bcabf9ce6aa8373b97acc840f05b487d45c15

Base64:

5paU