Unicode Finder

"P" U+0050(LATIN CAPITAL LETTER P)

P
U+0050
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER P

Programming

C
\u0050
JavaScript
\u0050
Java
\u0050
Json
\u0050
Python
\u0050
Perl
\x{0050}
PHP
\x{0050}
Ruby
\u{0050}
Rust
\u{50}
Go
\u0050

Web

CSS
\000050
HtmlDecimal
P
HtmlHexadecimal
P
Url
P

Code

MD5
44c29edb103a2872f519ad0c9a0fdaaa
Sha1
511993d3c99719e38a6779073019dacd7178ddb9
Base64
UA==

Usage Examples

Programming Languages

C:

char c = '\u0050';
printf("%c\n", c);  // Output: P

JavaScript:

const char = '\u0050';
console.log(char);  // Output: P

Java:

char c = '\u0050';
System.out.println(c);  // Output: P

JSON:

{"text": "\u0050"}  // Value: P

Python:

char = '\u0050'
print(char)  # Output: P

Perl:

my $char = "\x{0050}";
print $char;  # Output: P

PHP:

$char = "\x{0050}";
echo $char;  // Output: P

Ruby:

char = "\u{0050}"
puts char  # Output: P

Rust:

let c = '\u{50}';
println!("{}", c);  // Output: P

Go:

char := '\u0050'
fmt.Printf("%c\n", char)  // Output: P

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000050";  /* Display: P */
}

HTML Decimal:

<p>HTML decimal: &#80;</p>  <!-- Display: P -->

HTML Hexadecimal:

<p>HTML hex: &#x0050;</p>  <!-- Display: P -->

URL Encoding:

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

Encodings

MD5:

44c29edb103a2872f519ad0c9a0fdaaa

SHA1:

511993d3c99719e38a6779073019dacd7178ddb9

Base64:

UA==