C:
char c = '\u9F14';
printf("%c\n", c); // Output: 鼔
JavaScript:
const char = '\u9F14';
console.log(char); // Output: 鼔
Java:
char c = '\u9F14';
System.out.println(c); // Output: 鼔
JSON:
{"text": "\u9F14"} // Value: 鼔
Python:
char = '\u9F14'
print(char) # Output: 鼔
Perl:
my $char = "\x{9F14}";
print $char; # Output: 鼔
PHP:
$char = "\x{9F14}";
echo $char; // Output: 鼔
Ruby:
char = "\u{9F14}"
puts char # Output: 鼔
Rust:
let c = '\u{9F14}';
println!("{}", c); // Output: 鼔
Go:
char := '\u9F14'
fmt.Printf("%c\n", char) // Output: 鼔
CSS:
/* CSS content property */
.element::before {
content: "\009F14"; /* 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%94
MD5:
cd4f50ea9bcb9a1704aa902fecb8db70
SHA1:
821e7cd1f49818c59e23fcc4603d941470cb6222
Base64:
6byU