C:
char c = '\u1F13';
printf("%c\n", c); // Output: ἓ
JavaScript:
const char = '\u1F13';
console.log(char); // Output: ἓ
Java:
char c = '\u1F13';
System.out.println(c); // Output: ἓ
JSON:
{"text": "\u1F13"} // Value: ἓ
Python:
char = '\u1F13'
print(char) # Output: ἓ
Perl:
my $char = "\x{1F13}";
print $char; # Output: ἓ
PHP:
$char = "\x{1F13}";
echo $char; // Output: ἓ
Ruby:
char = "\u{1F13}"
puts char # Output: ἓ
Rust:
let c = '\u{1F13}';
println!("{}", c); // Output: ἓ
Go:
char := '\u1F13'
fmt.Printf("%c\n", char) // Output: ἓ
CSS:
/* CSS content property */
.element::before {
content: "\001F13"; /* 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%BC%93
MD5:
ad2f12f530131ee3c1f9a6175ce3f4f4
SHA1:
7459ca20182ca24832c68c63a59bf9781de641a2
Base64:
4byT