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