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