C:
char c = '\u1097';
printf("%c\n", c); // Output: ႗
JavaScript:
const char = '\u1097';
console.log(char); // Output: ႗
Java:
char c = '\u1097';
System.out.println(c); // Output: ႗
JSON:
{"text": "\u1097"} // Value: ႗
Python:
char = '\u1097'
print(char) # Output: ႗
Perl:
my $char = "\x{1097}";
print $char; # Output: ႗
PHP:
$char = "\x{1097}";
echo $char; // Output: ႗
Ruby:
char = "\u{1097}"
puts char # Output: ႗
Rust:
let c = '\u{1097}';
println!("{}", c); // Output: ႗
Go:
char := '\u1097'
fmt.Printf("%c\n", char) // Output: ႗
CSS:
/* CSS content property */
.element::before {
content: "\001097"; /* 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%97
MD5:
c7b041ed37696c18a5eca6ae5f3c65e4
SHA1:
1507dcd42bcdf7bb7adaac4ece3739673b7a4887
Base64:
4YKX