C:
char c = '\u756B';
printf("%c\n", c); // Output: 畫
JavaScript:
const char = '\u756B';
console.log(char); // Output: 畫
Java:
char c = '\u756B';
System.out.println(c); // Output: 畫
JSON:
{"text": "\u756B"} // Value: 畫
Python:
char = '\u756B'
print(char) # Output: 畫
Perl:
my $char = "\x{756B}";
print $char; # Output: 畫
PHP:
$char = "\x{756B}";
echo $char; // Output: 畫
Ruby:
char = "\u{756B}"
puts char # Output: 畫
Rust:
let c = '\u{756B}';
println!("{}", c); // Output: 畫
Go:
char := '\u756B'
fmt.Printf("%c\n", char) // Output: 畫
CSS:
/* CSS content property */
.element::before {
content: "\00756B"; /* 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%AB
MD5:
7ddbafe0162b026c1f464794c82b4789
SHA1:
6b17ff448685a11543a5fc1c1da4a77fcd18180f
Base64:
55Wr