C:
char c = '\u9795';
printf("%c\n", c); // Output: 鞕
JavaScript:
const char = '\u9795';
console.log(char); // Output: 鞕
Java:
char c = '\u9795';
System.out.println(c); // Output: 鞕
JSON:
{"text": "\u9795"} // Value: 鞕
Python:
char = '\u9795'
print(char) # Output: 鞕
Perl:
my $char = "\x{9795}";
print $char; # Output: 鞕
PHP:
$char = "\x{9795}";
echo $char; // Output: 鞕
Ruby:
char = "\u{9795}"
puts char # Output: 鞕
Rust:
let c = '\u{9795}';
println!("{}", c); // Output: 鞕
Go:
char := '\u9795'
fmt.Printf("%c\n", char) // Output: 鞕
CSS:
/* CSS content property */
.element::before {
content: "\009795"; /* 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%95
MD5:
063a1e876a1ef66a43eea81b1ff59db9
SHA1:
c4fd054c23bdb5ad423a505d8e98c0b83a608da9
Base64:
6Z6V