C:
char c = '\u7369';
printf("%c\n", c); // Output: 獩
JavaScript:
const char = '\u7369';
console.log(char); // Output: 獩
Java:
char c = '\u7369';
System.out.println(c); // Output: 獩
JSON:
{"text": "\u7369"} // Value: 獩
Python:
char = '\u7369'
print(char) # Output: 獩
Perl:
my $char = "\x{7369}";
print $char; # Output: 獩
PHP:
$char = "\x{7369}";
echo $char; // Output: 獩
Ruby:
char = "\u{7369}"
puts char # Output: 獩
Rust:
let c = '\u{7369}';
println!("{}", c); // Output: 獩
Go:
char := '\u7369'
fmt.Printf("%c\n", char) // Output: 獩
CSS:
/* CSS content property */
.element::before {
content: "\007369"; /* 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%8D%A9
MD5:
1b74f5431e945d000df04f23229f1209
SHA1:
b0cf6d34e0817afc76ad5c9de4bbfd790ebcdf07
Base64:
542p