C:
char c = '\u7546';
printf("%c\n", c); // Output: 畆
JavaScript:
const char = '\u7546';
console.log(char); // Output: 畆
Java:
char c = '\u7546';
System.out.println(c); // Output: 畆
JSON:
{"text": "\u7546"} // Value: 畆
Python:
char = '\u7546'
print(char) # Output: 畆
Perl:
my $char = "\x{7546}";
print $char; # Output: 畆
PHP:
$char = "\x{7546}";
echo $char; // Output: 畆
Ruby:
char = "\u{7546}"
puts char # Output: 畆
Rust:
let c = '\u{7546}';
println!("{}", c); // Output: 畆
Go:
char := '\u7546'
fmt.Printf("%c\n", char) // Output: 畆
CSS:
/* CSS content property */
.element::before {
content: "\007546"; /* 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=%E7%95%86
MD5:
d622872be05db776f57114ea322b280d
SHA1:
cf1c85ed321f201d13d4db8c4524160a7d160650
Base64:
55WG