Unicode Finder

"斗" U+6597(CJK UNIFIED IDEOGRAPH-6597)

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

Programming

C
\u6597
JavaScript
\u6597
Java
\u6597
Json
\u6597
Python
\u6597
Perl
\x{6597}
PHP
\x{6597}
Ruby
\u{6597}
Rust
\u{6597}
Go
\u6597

Web

CSS
\006597
HtmlDecimal
斗
HtmlHexadecimal
斗
Url
%E6%96%97

Code

MD5
a7d6a7e6f319d355cbcf516c0bcdcbbe
Sha1
13d303b3ca3fab2fc7a2ff07f9a76fda4210ca51
Base64
5paX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6597';
console.log(char);  // Output: 斗

Java:

char c = '\u6597';
System.out.println(c);  // Output: 斗

JSON:

{"text": "\u6597"}  // Value: 斗

Python:

char = '\u6597'
print(char)  # Output: 斗

Perl:

my $char = "\x{6597}";
print $char;  # Output: 斗

PHP:

$char = "\x{6597}";
echo $char;  // Output: 斗

Ruby:

char = "\u{6597}"
puts char  # Output: 斗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006597";  /* Display: 斗 */
}

HTML Decimal:

<p>HTML decimal: &#26007;</p>  <!-- Display: 斗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6597;</p>  <!-- Display: 斗 -->

URL Encoding:

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

Encodings

MD5:

a7d6a7e6f319d355cbcf516c0bcdcbbe

SHA1:

13d303b3ca3fab2fc7a2ff07f9a76fda4210ca51

Base64:

5paX