C:
char c = '\u7065';
printf("%c\n", c); // Output: 灥
JavaScript:
const char = '\u7065';
console.log(char); // Output: 灥
Java:
char c = '\u7065';
System.out.println(c); // Output: 灥
JSON:
{"text": "\u7065"} // Value: 灥
Python:
char = '\u7065'
print(char) # Output: 灥
Perl:
my $char = "\x{7065}";
print $char; # Output: 灥
PHP:
$char = "\x{7065}";
echo $char; // Output: 灥
Ruby:
char = "\u{7065}"
puts char # Output: 灥
Rust:
let c = '\u{7065}';
println!("{}", c); // Output: 灥
Go:
char := '\u7065'
fmt.Printf("%c\n", char) // Output: 灥
CSS:
/* CSS content property */
.element::before {
content: "\007065"; /* 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%A5
MD5:
4121059b0cbba2424c15012cf3512cf4
SHA1:
42b8417b5d0f58ed3f6c7792ba99350b798fcde7
Base64:
54Gl