C:
char c = '\u9792';
printf("%c\n", c); // Output: 鞒
JavaScript:
const char = '\u9792';
console.log(char); // Output: 鞒
Java:
char c = '\u9792';
System.out.println(c); // Output: 鞒
JSON:
{"text": "\u9792"} // Value: 鞒
Python:
char = '\u9792'
print(char) # Output: 鞒
Perl:
my $char = "\x{9792}";
print $char; # Output: 鞒
PHP:
$char = "\x{9792}";
echo $char; // Output: 鞒
Ruby:
char = "\u{9792}"
puts char # Output: 鞒
Rust:
let c = '\u{9792}';
println!("{}", c); // Output: 鞒
Go:
char := '\u9792'
fmt.Printf("%c\n", char) // Output: 鞒
CSS:
/* CSS content property */
.element::before {
content: "\009792"; /* 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%92
MD5:
631e9b140ed9036394e51ec3882c0e24
SHA1:
6139d115422f5835c0ebd727362ecb67b6b28ddb
Base64:
6Z6S