C:
char c = '\u7396';
printf("%c\n", c); // Output: 玖
JavaScript:
const char = '\u7396';
console.log(char); // Output: 玖
Java:
char c = '\u7396';
System.out.println(c); // Output: 玖
JSON:
{"text": "\u7396"} // Value: 玖
Python:
char = '\u7396'
print(char) # Output: 玖
Perl:
my $char = "\x{7396}";
print $char; # Output: 玖
PHP:
$char = "\x{7396}";
echo $char; // Output: 玖
Ruby:
char = "\u{7396}"
puts char # Output: 玖
Rust:
let c = '\u{7396}';
println!("{}", c); // Output: 玖
Go:
char := '\u7396'
fmt.Printf("%c\n", char) // Output: 玖
CSS:
/* CSS content property */
.element::before {
content: "\007396"; /* 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%96
MD5:
0aa8b5370cf5324f689da8b520b71abd
SHA1:
c35a8e06886fe35a79c969f8183a7f4ef49b025f
Base64:
546W