C:
char c = '\u97F3';
printf("%c\n", c); // Output: 音
JavaScript:
const char = '\u97F3';
console.log(char); // Output: 音
Java:
char c = '\u97F3';
System.out.println(c); // Output: 音
JSON:
{"text": "\u97F3"} // Value: 音
Python:
char = '\u97F3'
print(char) # Output: 音
Perl:
my $char = "\x{97F3}";
print $char; # Output: 音
PHP:
$char = "\x{97F3}";
echo $char; // Output: 音
Ruby:
char = "\u{97F3}"
puts char # Output: 音
Rust:
let c = '\u{97F3}';
println!("{}", c); // Output: 音
Go:
char := '\u97F3'
fmt.Printf("%c\n", char) // Output: 音
CSS:
/* CSS content property */
.element::before {
content: "\0097F3"; /* 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=%E9%9F%B3
MD5:
43ad15e73d11efcf950c591158df8230
SHA1:
b7ec392a5d195b5936b2280958e25451efda44a5
Base64:
6Z+z