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