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: 斗
CSS:
/* CSS content property */
.element::before {
content: "\006597"; /* Display: 斗 */
}
HTML Decimal:
<p>HTML decimal: 斗</p> <!-- Display: 斗 -->
HTML Hexadecimal:
<p>HTML hex: 斗</p> <!-- Display: 斗 -->
URL Encoding:
// 斗 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%97
MD5:
a7d6a7e6f319d355cbcf516c0bcdcbbe
SHA1:
13d303b3ca3fab2fc7a2ff07f9a76fda4210ca51
Base64:
5paX