C:
char c = '\u94C4';
printf("%c\n", c); // Output: 铄
JavaScript:
const char = '\u94C4';
console.log(char); // Output: 铄
Java:
char c = '\u94C4';
System.out.println(c); // Output: 铄
JSON:
{"text": "\u94C4"} // Value: 铄
Python:
char = '\u94C4'
print(char) # Output: 铄
Perl:
my $char = "\x{94C4}";
print $char; # Output: 铄
PHP:
$char = "\x{94C4}";
echo $char; // Output: 铄
Ruby:
char = "\u{94C4}"
puts char # Output: 铄
Rust:
let c = '\u{94C4}';
println!("{}", c); // Output: 铄
Go:
char := '\u94C4'
fmt.Printf("%c\n", char) // Output: 铄
CSS:
/* CSS content property */
.element::before {
content: "\0094C4"; /* 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%93%84
MD5:
78dc680b4641d4e8eeb89bcaa16520e7
SHA1:
7122972d8f738d49f300d3f35ca9aed23030adb6
Base64:
6ZOE