C:
char c = '\u7553';
printf("%c\n", c); // Output: 畓
JavaScript:
const char = '\u7553';
console.log(char); // Output: 畓
Java:
char c = '\u7553';
System.out.println(c); // Output: 畓
JSON:
{"text": "\u7553"} // Value: 畓
Python:
char = '\u7553'
print(char) # Output: 畓
Perl:
my $char = "\x{7553}";
print $char; # Output: 畓
PHP:
$char = "\x{7553}";
echo $char; // Output: 畓
Ruby:
char = "\u{7553}"
puts char # Output: 畓
Rust:
let c = '\u{7553}';
println!("{}", c); // Output: 畓
Go:
char := '\u7553'
fmt.Printf("%c\n", char) // Output: 畓
CSS:
/* CSS content property */
.element::before {
content: "\007553"; /* 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%93
MD5:
1647d3cfa585fce2b0472f922b72559b
SHA1:
2aaf7da835ef94209247e4de9ecba8cdfa4adfca
Base64:
55WT