C:
char c = '\u7554';
printf("%c\n", c); // Output: 畔
JavaScript:
const char = '\u7554';
console.log(char); // Output: 畔
Java:
char c = '\u7554';
System.out.println(c); // Output: 畔
JSON:
{"text": "\u7554"} // Value: 畔
Python:
char = '\u7554'
print(char) # Output: 畔
Perl:
my $char = "\x{7554}";
print $char; # Output: 畔
PHP:
$char = "\x{7554}";
echo $char; // Output: 畔
Ruby:
char = "\u{7554}"
puts char # Output: 畔
Rust:
let c = '\u{7554}';
println!("{}", c); // Output: 畔
Go:
char := '\u7554'
fmt.Printf("%c\n", char) // Output: 畔
CSS:
/* CSS content property */
.element::before {
content: "\007554"; /* 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%94
MD5:
4af602cd092b7b5d541b9c05eb6f8fb5
SHA1:
353fa5d0f9e5b3b20958fec59d8def7ff2e396da
Base64:
55WU