C:
char c = '\u7550';
printf("%c\n", c); // Output: 畐
JavaScript:
const char = '\u7550';
console.log(char); // Output: 畐
Java:
char c = '\u7550';
System.out.println(c); // Output: 畐
JSON:
{"text": "\u7550"} // Value: 畐
Python:
char = '\u7550'
print(char) # Output: 畐
Perl:
my $char = "\x{7550}";
print $char; # Output: 畐
PHP:
$char = "\x{7550}";
echo $char; // Output: 畐
Ruby:
char = "\u{7550}"
puts char # Output: 畐
Rust:
let c = '\u{7550}';
println!("{}", c); // Output: 畐
Go:
char := '\u7550'
fmt.Printf("%c\n", char) // Output: 畐
CSS:
/* CSS content property */
.element::before {
content: "\007550"; /* 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%90
MD5:
35ea535d8cbe715d8ec7f8c022baa93d
SHA1:
4ffae80be9444de3162b23f8312e557923667d65
Base64:
55WQ