C:
char c = '\u7569';
printf("%c\n", c); // Output: 畩
JavaScript:
const char = '\u7569';
console.log(char); // Output: 畩
Java:
char c = '\u7569';
System.out.println(c); // Output: 畩
JSON:
{"text": "\u7569"} // Value: 畩
Python:
char = '\u7569'
print(char) # Output: 畩
Perl:
my $char = "\x{7569}";
print $char; # Output: 畩
PHP:
$char = "\x{7569}";
echo $char; // Output: 畩
Ruby:
char = "\u{7569}"
puts char # Output: 畩
Rust:
let c = '\u{7569}';
println!("{}", c); // Output: 畩
Go:
char := '\u7569'
fmt.Printf("%c\n", char) // Output: 畩
CSS:
/* CSS content property */
.element::before {
content: "\007569"; /* 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%A9
MD5:
e631e9bb2e106ec3498c4c6504c8c171
SHA1:
a898b6e97074b900991649c8634cdabfd67eee03
Base64:
55Wp