C:
char c = '\u1089';
printf("%c\n", c); // Output: ႉ
JavaScript:
const char = '\u1089';
console.log(char); // Output: ႉ
Java:
char c = '\u1089';
System.out.println(c); // Output: ႉ
JSON:
{"text": "\u1089"} // Value: ႉ
Python:
char = '\u1089'
print(char) # Output: ႉ
Perl:
my $char = "\x{1089}";
print $char; # Output: ႉ
PHP:
$char = "\x{1089}";
echo $char; // Output: ႉ
Ruby:
char = "\u{1089}"
puts char # Output: ႉ
Rust:
let c = '\u{1089}';
println!("{}", c); // Output: ႉ
Go:
char := '\u1089'
fmt.Printf("%c\n", char) // Output: ႉ
CSS:
/* CSS content property */
.element::before {
content: "\001089"; /* 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%82%89
MD5:
b5e7efa2f5c3ab1fe490614bf6cac7ee
SHA1:
f669f3bc9216bb0defc189be0b04d8d708c5f329
Base64:
4YKJ