C:
char c = '\u9F09';
printf("%c\n", c); // Output: 鼉
JavaScript:
const char = '\u9F09';
console.log(char); // Output: 鼉
Java:
char c = '\u9F09';
System.out.println(c); // Output: 鼉
JSON:
{"text": "\u9F09"} // Value: 鼉
Python:
char = '\u9F09'
print(char) # Output: 鼉
Perl:
my $char = "\x{9F09}";
print $char; # Output: 鼉
PHP:
$char = "\x{9F09}";
echo $char; // Output: 鼉
Ruby:
char = "\u{9F09}"
puts char # Output: 鼉
Rust:
let c = '\u{9F09}';
println!("{}", c); // Output: 鼉
Go:
char := '\u9F09'
fmt.Printf("%c\n", char) // Output: 鼉
CSS:
/* CSS content property */
.element::before {
content: "\009F09"; /* 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%BC%89
MD5:
2301e9057ff13376dc1b63ed0eeec4f2
SHA1:
972731098d057e82c28ae60451401456bba19d48
Base64:
6byJ