C:
char c = '\u0443';
printf("%c\n", c); // Output: у
JavaScript:
const char = '\u0443';
console.log(char); // Output: у
Java:
char c = '\u0443';
System.out.println(c); // Output: у
JSON:
{"text": "\u0443"} // Value: у
Python:
char = '\u0443'
print(char) # Output: у
Perl:
my $char = "\x{0443}";
print $char; # Output: у
PHP:
$char = "\x{0443}";
echo $char; // Output: у
Ruby:
char = "\u{0443}"
puts char # Output: у
Rust:
let c = '\u{443}';
println!("{}", c); // Output: у
Go:
char := '\u0443'
fmt.Printf("%c\n", char) // Output: у
CSS:
/* CSS content property */
.element::before {
content: "\000443"; /* 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=%D1%83
MD5:
22842a6c505e5b4cb175bc52692c1917
SHA1:
d944cde8b15c4d8b1a868f66bebf0b6e5b10e822
Base64:
0YM=