C:
char c = '\u1091';
printf("%c\n", c); // Output: ႑
JavaScript:
const char = '\u1091';
console.log(char); // Output: ႑
Java:
char c = '\u1091';
System.out.println(c); // Output: ႑
JSON:
{"text": "\u1091"} // Value: ႑
Python:
char = '\u1091'
print(char) # Output: ႑
Perl:
my $char = "\x{1091}";
print $char; # Output: ႑
PHP:
$char = "\x{1091}";
echo $char; // Output: ႑
Ruby:
char = "\u{1091}"
puts char # Output: ႑
Rust:
let c = '\u{1091}';
println!("{}", c); // Output: ႑
Go:
char := '\u1091'
fmt.Printf("%c\n", char) // Output: ႑
CSS:
/* CSS content property */
.element::before {
content: "\001091"; /* 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%91
MD5:
c9cc3f1767583755fb911f346419cae2
SHA1:
56ec87fae3ac76ae547aa2e2b7ea28c218fd5166
Base64:
4YKR