C:
char c = '\u7898';
printf("%c\n", c); // Output: 碘
JavaScript:
const char = '\u7898';
console.log(char); // Output: 碘
Java:
char c = '\u7898';
System.out.println(c); // Output: 碘
JSON:
{"text": "\u7898"} // Value: 碘
Python:
char = '\u7898'
print(char) # Output: 碘
Perl:
my $char = "\x{7898}";
print $char; # Output: 碘
PHP:
$char = "\x{7898}";
echo $char; // Output: 碘
Ruby:
char = "\u{7898}"
puts char # Output: 碘
Rust:
let c = '\u{7898}';
println!("{}", c); // Output: 碘
Go:
char := '\u7898'
fmt.Printf("%c\n", char) // Output: 碘
CSS:
/* CSS content property */
.element::before {
content: "\007898"; /* 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=%E7%A2%98
MD5:
2e18462c2dae9b508764a88ba74985ad
SHA1:
f7a1bafeb174d7f63ae2b06cd7febdd03e3b7b35
Base64:
56KY