C:
char c = '\u0410';
printf("%c\n", c); // Output: А
JavaScript:
const char = '\u0410';
console.log(char); // Output: А
Java:
char c = '\u0410';
System.out.println(c); // Output: А
JSON:
{"text": "\u0410"} // Value: А
Python:
char = '\u0410'
print(char) # Output: А
Perl:
my $char = "\x{0410}";
print $char; # Output: А
PHP:
$char = "\x{0410}";
echo $char; // Output: А
Ruby:
char = "\u{0410}"
puts char # Output: А
Rust:
let c = '\u{410}';
println!("{}", c); // Output: А
Go:
char := '\u0410'
fmt.Printf("%c\n", char) // Output: А
CSS:
/* CSS content property */
.element::before {
content: "\000410"; /* 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%90
MD5:
87a06b19f2c69c317eb4fc207ecc10f7
SHA1:
016c9d571ea366075ab126d4909924d99f5f5307
Base64:
0JA=