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
CSS:
/* CSS content property */
.element::before {
content: "\000050"; /* Display: P */
}
HTML Decimal:
<p>HTML decimal: P</p> <!-- Display: P -->
HTML Hexadecimal:
<p>HTML hex: P</p> <!-- Display: P -->
URL Encoding:
// P URL encoding
https://unicodefinder.com/search.php?query=P
MD5:
44c29edb103a2872f519ad0c9a0fdaaa
SHA1:
511993d3c99719e38a6779073019dacd7178ddb9
Base64:
UA==