C:
char c = '\u0110';
printf("%c\n", c); // Output: Đ
JavaScript:
const char = '\u0110';
console.log(char); // Output: Đ
Java:
char c = '\u0110';
System.out.println(c); // Output: Đ
JSON:
{"text": "\u0110"} // Value: Đ
Python:
char = '\u0110'
print(char) # Output: Đ
Perl:
my $char = "\x{0110}";
print $char; # Output: Đ
PHP:
$char = "\x{0110}";
echo $char; // Output: Đ
Ruby:
char = "\u{0110}"
puts char # Output: Đ
Rust:
let c = '\u{110}';
println!("{}", c); // Output: Đ
Go:
char := '\u0110'
fmt.Printf("%c\n", char) // Output: Đ
CSS:
/* CSS content property */
.element::before {
content: "\000110"; /* 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=%C4%90
MD5:
58c473f84477cc227d89b3942fd55ecb
SHA1:
e1191b5206ebba999100013c567b352ad98083a2
Base64:
xJA=