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