C:
char c = '\u78B2';
printf("%c\n", c); // Output: 碲
JavaScript:
const char = '\u78B2';
console.log(char); // Output: 碲
Java:
char c = '\u78B2';
System.out.println(c); // Output: 碲
JSON:
{"text": "\u78B2"} // Value: 碲
Python:
char = '\u78B2'
print(char) # Output: 碲
Perl:
my $char = "\x{78B2}";
print $char; # Output: 碲
PHP:
$char = "\x{78B2}";
echo $char; // Output: 碲
Ruby:
char = "\u{78B2}"
puts char # Output: 碲
Rust:
let c = '\u{78B2}';
println!("{}", c); // Output: 碲
Go:
char := '\u78B2'
fmt.Printf("%c\n", char) // Output: 碲
CSS:
/* CSS content property */
.element::before {
content: "\0078B2"; /* 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%B2
MD5:
c814b35e703ea0c41ccaa6866ed206e5
SHA1:
1016666e54fad29642bcaad3da18901377f7211b
Base64:
56Ky