C:
char c = '\u9780';
printf("%c\n", c); // Output: 鞀
JavaScript:
const char = '\u9780';
console.log(char); // Output: 鞀
Java:
char c = '\u9780';
System.out.println(c); // Output: 鞀
JSON:
{"text": "\u9780"} // Value: 鞀
Python:
char = '\u9780'
print(char) # Output: 鞀
Perl:
my $char = "\x{9780}";
print $char; # Output: 鞀
PHP:
$char = "\x{9780}";
echo $char; // Output: 鞀
Ruby:
char = "\u{9780}"
puts char # Output: 鞀
Rust:
let c = '\u{9780}';
println!("{}", c); // Output: 鞀
Go:
char := '\u9780'
fmt.Printf("%c\n", char) // Output: 鞀
CSS:
/* CSS content property */
.element::before {
content: "\009780"; /* 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%80
MD5:
64ba8a4e0c1856de8722a9365f3ef033
SHA1:
eb21467fd3b8ded873e30153e59537e437906466
Base64:
6Z6A