C:
char c = '\u7388';
printf("%c\n", c); // Output: 玈
JavaScript:
const char = '\u7388';
console.log(char); // Output: 玈
Java:
char c = '\u7388';
System.out.println(c); // Output: 玈
JSON:
{"text": "\u7388"} // Value: 玈
Python:
char = '\u7388'
print(char) # Output: 玈
Perl:
my $char = "\x{7388}";
print $char; # Output: 玈
PHP:
$char = "\x{7388}";
echo $char; // Output: 玈
Ruby:
char = "\u{7388}"
puts char # Output: 玈
Rust:
let c = '\u{7388}';
println!("{}", c); // Output: 玈
Go:
char := '\u7388'
fmt.Printf("%c\n", char) // Output: 玈
CSS:
/* CSS content property */
.element::before {
content: "\007388"; /* 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%8E%88
MD5:
68d2a9987d95ef921e4d43bc61db0811
SHA1:
f019f8cb9c4fdb5d4c4b04b5c5bed5a33e3a558c
Base64:
546I