C:
char c = '\u03A1';
printf("%c\n", c); // Output: Ρ
JavaScript:
const char = '\u03A1';
console.log(char); // Output: Ρ
Java:
char c = '\u03A1';
System.out.println(c); // Output: Ρ
JSON:
{"text": "\u03A1"} // Value: Ρ
Python:
char = '\u03A1'
print(char) # Output: Ρ
Perl:
my $char = "\x{03A1}";
print $char; # Output: Ρ
PHP:
$char = "\x{03A1}";
echo $char; // Output: Ρ
Ruby:
char = "\u{03A1}"
puts char # Output: Ρ
Rust:
let c = '\u{3A1}';
println!("{}", c); // Output: Ρ
Go:
char := '\u03A1'
fmt.Printf("%c\n", char) // Output: Ρ
CSS:
/* CSS content property */
.element::before {
content: "\0003A1"; /* 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=%CE%A1
MD5:
d28ebe1aea3741f003cd0d39dd1bce95
SHA1:
8c5a603e02298d6d95ac909ee89120e0af524941
Base64:
zqE=