C:
char c = '\u0420';
printf("%c\n", c); // Output: Р
JavaScript:
const char = '\u0420';
console.log(char); // Output: Р
Java:
char c = '\u0420';
System.out.println(c); // Output: Р
JSON:
{"text": "\u0420"} // Value: Р
Python:
char = '\u0420'
print(char) # Output: Р
Perl:
my $char = "\x{0420}";
print $char; # Output: Р
PHP:
$char = "\x{0420}";
echo $char; // Output: Р
Ruby:
char = "\u{0420}"
puts char # Output: Р
Rust:
let c = '\u{420}';
println!("{}", c); // Output: Р
Go:
char := '\u0420'
fmt.Printf("%c\n", char) // Output: Р
CSS:
/* CSS content property */
.element::before {
content: "\000420"; /* 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%A0
MD5:
437df906a235180597e4e3f1beec52fc
SHA1:
fd88c3f4ca09d1f4f6f5c718c909d24e10ad5707
Base64:
0KA=