Unicode Finder

"R" U+0052(LATIN CAPITAL LETTER R)

R
U+0052
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER R

Programming

C
\u0052
JavaScript
\u0052
Java
\u0052
Json
\u0052
Python
\u0052
Perl
\x{0052}
PHP
\x{0052}
Ruby
\u{0052}
Rust
\u{52}
Go
\u0052

Web

CSS
\000052
HtmlDecimal
R
HtmlHexadecimal
R
Url
R

Code

MD5
e1e1d3d40573127e9ee0480caf1283d6
Sha1
06576556d1ad802f247cad11ae748be47b70cd9c
Base64
Ug==

Usage Examples

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000052";  /* Display: R */
}

HTML Decimal:

<p>HTML decimal: &#82;</p>  <!-- Display: R -->

HTML Hexadecimal:

<p>HTML hex: &#x0052;</p>  <!-- Display: R -->

URL Encoding:

// R URL encoding
https://unicodefinder.com/search.php?query=R

Encodings

MD5:

e1e1d3d40573127e9ee0480caf1283d6

SHA1:

06576556d1ad802f247cad11ae748be47b70cd9c

Base64:

Ug==