C:
char c = '\u8C14';
printf("%c\n", c); // Output: 谔
JavaScript:
const char = '\u8C14';
console.log(char); // Output: 谔
Java:
char c = '\u8C14';
System.out.println(c); // Output: 谔
JSON:
{"text": "\u8C14"} // Value: 谔
Python:
char = '\u8C14'
print(char) # Output: 谔
Perl:
my $char = "\x{8C14}";
print $char; # Output: 谔
PHP:
$char = "\x{8C14}";
echo $char; // Output: 谔
Ruby:
char = "\u{8C14}"
puts char # Output: 谔
Rust:
let c = '\u{8C14}';
println!("{}", c); // Output: 谔
Go:
char := '\u8C14'
fmt.Printf("%c\n", char) // Output: 谔
CSS:
/* CSS content property */
.element::before {
content: "\008C14"; /* 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=%E8%B0%94
MD5:
bc4e1fa5456234f0ff83a5f489a69346
SHA1:
b24a098e3f69d5dd30b6e09e8577137384367e06
Base64:
6LCU