C:
char c = '\u0052';
printf("%c\n", c); // Output: R
JavaScript:
const char = '\u0052';
console.log(char); // Output: R
Java:
char c = '\u0052';
System.out.println(c); // Output: R
JSON:
{"text": "\u0052"} // Value: R
Python:
char = '\u0052'
print(char) # Output: R
Perl:
my $char = "\x{0052}";
print $char; # Output: R
PHP:
$char = "\x{0052}";
echo $char; // Output: R
Ruby:
char = "\u{0052}"
puts char # Output: R
Rust:
let c = '\u{52}';
println!("{}", c); // Output: R
Go:
char := '\u0052'
fmt.Printf("%c\n", char) // Output: R
CSS:
/* CSS content property */
.element::before {
content: "\000052"; /* Display: R */
}
HTML Decimal:
<p>HTML decimal: R</p> <!-- Display: R -->
HTML Hexadecimal:
<p>HTML hex: R</p> <!-- Display: R -->
URL Encoding:
// R URL encoding
https://unicodefinder.com/search.php?query=R
MD5:
e1e1d3d40573127e9ee0480caf1283d6
SHA1:
06576556d1ad802f247cad11ae748be47b70cd9c
Base64:
Ug==