C:
char c = '\u9397';
printf("%c\n", c); // Output: 鎗
JavaScript:
const char = '\u9397';
console.log(char); // Output: 鎗
Java:
char c = '\u9397';
System.out.println(c); // Output: 鎗
JSON:
{"text": "\u9397"} // Value: 鎗
Python:
char = '\u9397'
print(char) # Output: 鎗
Perl:
my $char = "\x{9397}";
print $char; # Output: 鎗
PHP:
$char = "\x{9397}";
echo $char; // Output: 鎗
Ruby:
char = "\u{9397}"
puts char # Output: 鎗
Rust:
let c = '\u{9397}';
println!("{}", c); // Output: 鎗
Go:
char := '\u9397'
fmt.Printf("%c\n", char) // Output: 鎗
CSS:
/* CSS content property */
.element::before {
content: "\009397"; /* 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%8E%97
MD5:
698ef6d03935fd7896ff53591452db8d
SHA1:
f4972b45bce2696f7348508596ff252ffd77b943
Base64:
6Y6X