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