C:
char c = '\u1084';
printf("%c\n", c); // Output: ႄ
JavaScript:
const char = '\u1084';
console.log(char); // Output: ႄ
Java:
char c = '\u1084';
System.out.println(c); // Output: ႄ
JSON:
{"text": "\u1084"} // Value: ႄ
Python:
char = '\u1084'
print(char) # Output: ႄ
Perl:
my $char = "\x{1084}";
print $char; # Output: ႄ
PHP:
$char = "\x{1084}";
echo $char; // Output: ႄ
Ruby:
char = "\u{1084}"
puts char # Output: ႄ
Rust:
let c = '\u{1084}';
println!("{}", c); // Output: ႄ
Go:
char := '\u1084'
fmt.Printf("%c\n", char) // Output: ႄ
CSS:
/* CSS content property */
.element::before {
content: "\001084"; /* 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%84
MD5:
c0ce64d5bfe9a8462a44a332487a0c5f
SHA1:
5cf58dfa5538560f19e2b5babaa165dfd1d77d56
Base64:
4YKE