C:
char c = '\u9797';
printf("%c\n", c); // Output: 鞗
JavaScript:
const char = '\u9797';
console.log(char); // Output: 鞗
Java:
char c = '\u9797';
System.out.println(c); // Output: 鞗
JSON:
{"text": "\u9797"} // Value: 鞗
Python:
char = '\u9797'
print(char) # Output: 鞗
Perl:
my $char = "\x{9797}";
print $char; # Output: 鞗
PHP:
$char = "\x{9797}";
echo $char; // Output: 鞗
Ruby:
char = "\u{9797}"
puts char # Output: 鞗
Rust:
let c = '\u{9797}';
println!("{}", c); // Output: 鞗
Go:
char := '\u9797'
fmt.Printf("%c\n", char) // Output: 鞗
CSS:
/* CSS content property */
.element::before {
content: "\009797"; /* 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%9E%97
MD5:
066a718a11cdc6694eeecee2a23a21c6
SHA1:
1f3ef1507e018ee7aba406d71e63ce93e5bfb6d3
Base64:
6Z6X