C:
char c = '\u7071';
printf("%c\n", c); // Output: 灱
JavaScript:
const char = '\u7071';
console.log(char); // Output: 灱
Java:
char c = '\u7071';
System.out.println(c); // Output: 灱
JSON:
{"text": "\u7071"} // Value: 灱
Python:
char = '\u7071'
print(char) # Output: 灱
Perl:
my $char = "\x{7071}";
print $char; # Output: 灱
PHP:
$char = "\x{7071}";
echo $char; // Output: 灱
Ruby:
char = "\u{7071}"
puts char # Output: 灱
Rust:
let c = '\u{7071}';
println!("{}", c); // Output: 灱
Go:
char := '\u7071'
fmt.Printf("%c\n", char) // Output: 灱
CSS:
/* CSS content property */
.element::before {
content: "\007071"; /* 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%B1
MD5:
474e374456ea6dc6459cfee2d25a2429
SHA1:
0d04bc2acbd2d35f09da62390970dbc256cf3121
Base64:
54Gx