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