C:
char c = '\u0111';
printf("%c\n", c); // Output: đ
JavaScript:
const char = '\u0111';
console.log(char); // Output: đ
Java:
char c = '\u0111';
System.out.println(c); // Output: đ
JSON:
{"text": "\u0111"} // Value: đ
Python:
char = '\u0111'
print(char) # Output: đ
Perl:
my $char = "\x{0111}";
print $char; # Output: đ
PHP:
$char = "\x{0111}";
echo $char; // Output: đ
Ruby:
char = "\u{0111}"
puts char # Output: đ
Rust:
let c = '\u{111}';
println!("{}", c); // Output: đ
Go:
char := '\u0111'
fmt.Printf("%c\n", char) // Output: đ
CSS:
/* CSS content property */
.element::before {
content: "\000111"; /* 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%91
MD5:
b5407dfd5a7d4cae26780b947dbeea92
SHA1:
c5f95801dfa6112ef38d7c6db4c7c5c71d021f57
Base64:
xJE=