C:
char c = '\u6214';
printf("%c\n", c); // Output: 戔
JavaScript:
const char = '\u6214';
console.log(char); // Output: 戔
Java:
char c = '\u6214';
System.out.println(c); // Output: 戔
JSON:
{"text": "\u6214"} // Value: 戔
Python:
char = '\u6214'
print(char) # Output: 戔
Perl:
my $char = "\x{6214}";
print $char; # Output: 戔
PHP:
$char = "\x{6214}";
echo $char; // Output: 戔
Ruby:
char = "\u{6214}"
puts char # Output: 戔
Rust:
let c = '\u{6214}';
println!("{}", c); // Output: 戔
Go:
char := '\u6214'
fmt.Printf("%c\n", char) // Output: 戔
CSS:
/* CSS content property */
.element::before {
content: "\006214"; /* 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%94
MD5:
98af5ee0cccd8c730900d4767504547b
SHA1:
15a885d1c8107ef8cd83cc5d0d7beb327eb71f55
Base64:
5oiU