C:
char c = '\u0440';
printf("%c\n", c); // Output: р
JavaScript:
const char = '\u0440';
console.log(char); // Output: р
Java:
char c = '\u0440';
System.out.println(c); // Output: р
JSON:
{"text": "\u0440"} // Value: р
Python:
char = '\u0440'
print(char) # Output: р
Perl:
my $char = "\x{0440}";
print $char; # Output: р
PHP:
$char = "\x{0440}";
echo $char; // Output: р
Ruby:
char = "\u{0440}"
puts char # Output: р
Rust:
let c = '\u{440}';
println!("{}", c); // Output: р
Go:
char := '\u0440'
fmt.Printf("%c\n", char) // Output: р
CSS:
/* CSS content property */
.element::before {
content: "\000440"; /* 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%80
MD5:
ed2321131826e7081e2514ffe4a48152
SHA1:
5a3b4bcf554007112bd227924c5d8d99b3bcdab6
Base64:
0YA=