C:
char c = '\u7043';
printf("%c\n", c); // Output: 灃
JavaScript:
const char = '\u7043';
console.log(char); // Output: 灃
Java:
char c = '\u7043';
System.out.println(c); // Output: 灃
JSON:
{"text": "\u7043"} // Value: 灃
Python:
char = '\u7043'
print(char) # Output: 灃
Perl:
my $char = "\x{7043}";
print $char; # Output: 灃
PHP:
$char = "\x{7043}";
echo $char; // Output: 灃
Ruby:
char = "\u{7043}"
puts char # Output: 灃
Rust:
let c = '\u{7043}';
println!("{}", c); // Output: 灃
Go:
char := '\u7043'
fmt.Printf("%c\n", char) // Output: 灃
CSS:
/* CSS content property */
.element::before {
content: "\007043"; /* 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%81%83
MD5:
9f28ebb08ebc827551a327be505b79e5
SHA1:
3b141355a08f55444940884e8d89c28d7aa1de49
Base64:
54GD