C:
char c = '\u7556';
printf("%c\n", c); // Output: 畖
JavaScript:
const char = '\u7556';
console.log(char); // Output: 畖
Java:
char c = '\u7556';
System.out.println(c); // Output: 畖
JSON:
{"text": "\u7556"} // Value: 畖
Python:
char = '\u7556'
print(char) # Output: 畖
Perl:
my $char = "\x{7556}";
print $char; # Output: 畖
PHP:
$char = "\x{7556}";
echo $char; // Output: 畖
Ruby:
char = "\u{7556}"
puts char # Output: 畖
Rust:
let c = '\u{7556}';
println!("{}", c); // Output: 畖
Go:
char := '\u7556'
fmt.Printf("%c\n", char) // Output: 畖
CSS:
/* CSS content property */
.element::before {
content: "\007556"; /* 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%96
MD5:
1e6a82ed9139029a5894f193bf80e511
SHA1:
7decf513480590e4bebff97c476ec28e323c5c6c
Base64:
55WW