C:
char c = '\u9790';
printf("%c\n", c); // Output: 鞐
JavaScript:
const char = '\u9790';
console.log(char); // Output: 鞐
Java:
char c = '\u9790';
System.out.println(c); // Output: 鞐
JSON:
{"text": "\u9790"} // Value: 鞐
Python:
char = '\u9790'
print(char) # Output: 鞐
Perl:
my $char = "\x{9790}";
print $char; # Output: 鞐
PHP:
$char = "\x{9790}";
echo $char; // Output: 鞐
Ruby:
char = "\u{9790}"
puts char # Output: 鞐
Rust:
let c = '\u{9790}';
println!("{}", c); // Output: 鞐
Go:
char := '\u9790'
fmt.Printf("%c\n", char) // Output: 鞐
CSS:
/* CSS content property */
.element::before {
content: "\009790"; /* 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%90
MD5:
4b69f2124c449c8f59913bc51fb00969
SHA1:
450f262dd331ee83584a18abda62d120445d7a5b
Base64:
6Z6Q