C:
char c = '\u6209';
printf("%c\n", c); // Output: 戉
JavaScript:
const char = '\u6209';
console.log(char); // Output: 戉
Java:
char c = '\u6209';
System.out.println(c); // Output: 戉
JSON:
{"text": "\u6209"} // Value: 戉
Python:
char = '\u6209'
print(char) # Output: 戉
Perl:
my $char = "\x{6209}";
print $char; # Output: 戉
PHP:
$char = "\x{6209}";
echo $char; // Output: 戉
Ruby:
char = "\u{6209}"
puts char # Output: 戉
Rust:
let c = '\u{6209}';
println!("{}", c); // Output: 戉
Go:
char := '\u6209'
fmt.Printf("%c\n", char) // Output: 戉
CSS:
/* CSS content property */
.element::before {
content: "\006209"; /* 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%89
MD5:
0c91990e258fb395bf1f9dd53a142bae
SHA1:
9bcffd700e66adbb175c17aa238c62e4285365e6
Base64:
5oiJ