C:
char c = '\u0414';
printf("%c\n", c); // Output: Д
JavaScript:
const char = '\u0414';
console.log(char); // Output: Д
Java:
char c = '\u0414';
System.out.println(c); // Output: Д
JSON:
{"text": "\u0414"} // Value: Д
Python:
char = '\u0414'
print(char) # Output: Д
Perl:
my $char = "\x{0414}";
print $char; # Output: Д
PHP:
$char = "\x{0414}";
echo $char; // Output: Д
Ruby:
char = "\u{0414}"
puts char # Output: Д
Rust:
let c = '\u{414}';
println!("{}", c); // Output: Д
Go:
char := '\u0414'
fmt.Printf("%c\n", char) // Output: Д
CSS:
/* CSS content property */
.element::before {
content: "\000414"; /* 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=%D0%94
MD5:
872400d7c46eb2c00e9f97e2f4cc7099
SHA1:
008c6d39e16797e95b4507f146676cf77f67bb9f
Base64:
0JQ=