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