C:
char c = '\u6203';
printf("%c\n", c); // Output: 戃
JavaScript:
const char = '\u6203';
console.log(char); // Output: 戃
Java:
char c = '\u6203';
System.out.println(c); // Output: 戃
JSON:
{"text": "\u6203"} // Value: 戃
Python:
char = '\u6203'
print(char) # Output: 戃
Perl:
my $char = "\x{6203}";
print $char; # Output: 戃
PHP:
$char = "\x{6203}";
echo $char; // Output: 戃
Ruby:
char = "\u{6203}"
puts char # Output: 戃
Rust:
let c = '\u{6203}';
println!("{}", c); // Output: 戃
Go:
char := '\u6203'
fmt.Printf("%c\n", char) // Output: 戃
CSS:
/* CSS content property */
.element::before {
content: "\006203"; /* 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%83
MD5:
3321ad3ffdc0d1e05925206dfd5e1960
SHA1:
86741cb0182858c10fa16d3b03c396b718433271
Base64:
5oiD