C:
char c = '\u0401';
printf("%c\n", c); // Output: Ё
JavaScript:
const char = '\u0401';
console.log(char); // Output: Ё
Java:
char c = '\u0401';
System.out.println(c); // Output: Ё
JSON:
{"text": "\u0401"} // Value: Ё
Python:
char = '\u0401'
print(char) # Output: Ё
Perl:
my $char = "\x{0401}";
print $char; # Output: Ё
PHP:
$char = "\x{0401}";
echo $char; // Output: Ё
Ruby:
char = "\u{0401}"
puts char # Output: Ё
Rust:
let c = '\u{401}';
println!("{}", c); // Output: Ё
Go:
char := '\u0401'
fmt.Printf("%c\n", char) // Output: Ё
CSS:
/* CSS content property */
.element::before {
content: "\000401"; /* 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%81
MD5:
3bfc168ec290429f69b09718c697c0c2
SHA1:
6802cc1c3022655a053fbb169efae027a218ff8f
Base64:
0IE=