C:
char c = '\u044E';
printf("%c\n", c); // Output: ю
JavaScript:
const char = '\u044E';
console.log(char); // Output: ю
Java:
char c = '\u044E';
System.out.println(c); // Output: ю
JSON:
{"text": "\u044E"} // Value: ю
Python:
char = '\u044E'
print(char) # Output: ю
Perl:
my $char = "\x{044E}";
print $char; # Output: ю
PHP:
$char = "\x{044E}";
echo $char; // Output: ю
Ruby:
char = "\u{044E}"
puts char # Output: ю
Rust:
let c = '\u{44E}';
println!("{}", c); // Output: ю
Go:
char := '\u044E'
fmt.Printf("%c\n", char) // Output: ю
CSS:
/* CSS content property */
.element::before {
content: "\00044E"; /* 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%8E
MD5:
2b2e2ec9c0226232f2a7efd567cf740c
SHA1:
baa96cc9f67a7eb824c0e9fffc587b71ef1acd68
Base64:
0Y4=