C:
char c = '\u1FEC';
printf("%c\n", c); // Output: Ῥ
JavaScript:
const char = '\u1FEC';
console.log(char); // Output: Ῥ
Java:
char c = '\u1FEC';
System.out.println(c); // Output: Ῥ
JSON:
{"text": "\u1FEC"} // Value: Ῥ
Python:
char = '\u1FEC'
print(char) # Output: Ῥ
Perl:
my $char = "\x{1FEC}";
print $char; # Output: Ῥ
PHP:
$char = "\x{1FEC}";
echo $char; // Output: Ῥ
Ruby:
char = "\u{1FEC}"
puts char # Output: Ῥ
Rust:
let c = '\u{1FEC}';
println!("{}", c); // Output: Ῥ
Go:
char := '\u1FEC'
fmt.Printf("%c\n", char) // Output: Ῥ
CSS:
/* CSS content property */
.element::before {
content: "\001FEC"; /* 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=%E1%BF%AC
MD5:
9b67e88675b906cc56e874d7c3d2f033
SHA1:
67e07627f0efe36b92e29322aa22dd136304ab47
Base64:
4b+s