C:
char c = '\u6246';
printf("%c\n", c); // Output: 扆
JavaScript:
const char = '\u6246';
console.log(char); // Output: 扆
Java:
char c = '\u6246';
System.out.println(c); // Output: 扆
JSON:
{"text": "\u6246"} // Value: 扆
Python:
char = '\u6246'
print(char) # Output: 扆
Perl:
my $char = "\x{6246}";
print $char; # Output: 扆
PHP:
$char = "\x{6246}";
echo $char; // Output: 扆
Ruby:
char = "\u{6246}"
puts char # Output: 扆
Rust:
let c = '\u{6246}';
println!("{}", c); // Output: 扆
Go:
char := '\u6246'
fmt.Printf("%c\n", char) // Output: 扆
CSS:
/* CSS content property */
.element::before {
content: "\006246"; /* 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%89%86
MD5:
79d5e5e6e7415e804c974f56d6c66ed9
SHA1:
612b56a64b3265f82788eba4a9ea4dd1f0bea400
Base64:
5omG