C:
char c = '\u8482';
printf("%c\n", c); // Output: 蒂
JavaScript:
const char = '\u8482';
console.log(char); // Output: 蒂
Java:
char c = '\u8482';
System.out.println(c); // Output: 蒂
JSON:
{"text": "\u8482"} // Value: 蒂
Python:
char = '\u8482'
print(char) # Output: 蒂
Perl:
my $char = "\x{8482}";
print $char; # Output: 蒂
PHP:
$char = "\x{8482}";
echo $char; // Output: 蒂
Ruby:
char = "\u{8482}"
puts char # Output: 蒂
Rust:
let c = '\u{8482}';
println!("{}", c); // Output: 蒂
Go:
char := '\u8482'
fmt.Printf("%c\n", char) // Output: 蒂
CSS:
/* CSS content property */
.element::before {
content: "\008482"; /* 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%92%82
MD5:
fae44400369beb04d934dfeb6afe00da
SHA1:
a54f13ebb0248dd980915ce9d6bd9a6e0a6310dd
Base64:
6JKC