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