C:
char c = '\u20AB';
printf("%c\n", c); // Output: ₫
JavaScript:
const char = '\u20AB';
console.log(char); // Output: ₫
Java:
char c = '\u20AB';
System.out.println(c); // Output: ₫
JSON:
{"text": "\u20AB"} // Value: ₫
Python:
char = '\u20AB'
print(char) # Output: ₫
Perl:
my $char = "\x{20AB}";
print $char; # Output: ₫
PHP:
$char = "\x{20AB}";
echo $char; // Output: ₫
Ruby:
char = "\u{20AB}"
puts char # Output: ₫
Rust:
let c = '\u{20AB}';
println!("{}", c); // Output: ₫
Go:
char := '\u20AB'
fmt.Printf("%c\n", char) // Output: ₫
CSS:
/* CSS content property */
.element::before {
content: "\0020AB"; /* 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=%E2%82%AB
MD5:
e1adef34ee30853b4f80ffaadf729bac
SHA1:
632f3fa6c124478aab3d5a5b38de49e53a224baf
Base64:
4oKr