C:
char c = '\u7552';
printf("%c\n", c); // Output: 畒
JavaScript:
const char = '\u7552';
console.log(char); // Output: 畒
Java:
char c = '\u7552';
System.out.println(c); // Output: 畒
JSON:
{"text": "\u7552"} // Value: 畒
Python:
char = '\u7552'
print(char) # Output: 畒
Perl:
my $char = "\x{7552}";
print $char; # Output: 畒
PHP:
$char = "\x{7552}";
echo $char; // Output: 畒
Ruby:
char = "\u{7552}"
puts char # Output: 畒
Rust:
let c = '\u{7552}';
println!("{}", c); // Output: 畒
Go:
char := '\u7552'
fmt.Printf("%c\n", char) // Output: 畒
CSS:
/* CSS content property */
.element::before {
content: "\007552"; /* 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%92
MD5:
2123504e1787a3121de405419519d578
SHA1:
66a027d1dbae19d7e12272e49b0d72515dc7055d
Base64:
55WS