C:
char c = '\u1090';
printf("%c\n", c); // Output: ႐
JavaScript:
const char = '\u1090';
console.log(char); // Output: ႐
Java:
char c = '\u1090';
System.out.println(c); // Output: ႐
JSON:
{"text": "\u1090"} // Value: ႐
Python:
char = '\u1090'
print(char) # Output: ႐
Perl:
my $char = "\x{1090}";
print $char; # Output: ႐
PHP:
$char = "\x{1090}";
echo $char; // Output: ႐
Ruby:
char = "\u{1090}"
puts char # Output: ႐
Rust:
let c = '\u{1090}';
println!("{}", c); // Output: ႐
Go:
char := '\u1090'
fmt.Printf("%c\n", char) // Output: ႐
CSS:
/* CSS content property */
.element::before {
content: "\001090"; /* 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%90
MD5:
0ad7b1a62bcd4fcfb513cd6f2e9bd685
SHA1:
81211dfb76aa25262ef00ed5f30c4a610e42d08f
Base64:
4YKQ