C:
char c = '\u1085';
printf("%c\n", c); // Output: ႅ
JavaScript:
const char = '\u1085';
console.log(char); // Output: ႅ
Java:
char c = '\u1085';
System.out.println(c); // Output: ႅ
JSON:
{"text": "\u1085"} // Value: ႅ
Python:
char = '\u1085'
print(char) # Output: ႅ
Perl:
my $char = "\x{1085}";
print $char; # Output: ႅ
PHP:
$char = "\x{1085}";
echo $char; // Output: ႅ
Ruby:
char = "\u{1085}"
puts char # Output: ႅ
Rust:
let c = '\u{1085}';
println!("{}", c); // Output: ႅ
Go:
char := '\u1085'
fmt.Printf("%c\n", char) // Output: ႅ
CSS:
/* CSS content property */
.element::before {
content: "\001085"; /* 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%85
MD5:
ecad99327050b62c54c70d80d4f00e98
SHA1:
3a4e1186860af76fb2dd98615a1d78eb4dd2a87b
Base64:
4YKF