C:
char c = '\u6226';
printf("%c\n", c); // Output: 戦
JavaScript:
const char = '\u6226';
console.log(char); // Output: 戦
Java:
char c = '\u6226';
System.out.println(c); // Output: 戦
JSON:
{"text": "\u6226"} // Value: 戦
Python:
char = '\u6226'
print(char) # Output: 戦
Perl:
my $char = "\x{6226}";
print $char; # Output: 戦
PHP:
$char = "\x{6226}";
echo $char; // Output: 戦
Ruby:
char = "\u{6226}"
puts char # Output: 戦
Rust:
let c = '\u{6226}';
println!("{}", c); // Output: 戦
Go:
char := '\u6226'
fmt.Printf("%c\n", char) // Output: 戦
CSS:
/* CSS content property */
.element::before {
content: "\006226"; /* 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%88%A6
MD5:
60469d5c5b55c423cfae28080cfc8595
SHA1:
a179a7749e154866b44322e3aeac023660b945c7
Base64:
5oim