C:
char c = '\u1071';
printf("%c\n", c); // Output: ၱ
JavaScript:
const char = '\u1071';
console.log(char); // Output: ၱ
Java:
char c = '\u1071';
System.out.println(c); // Output: ၱ
JSON:
{"text": "\u1071"} // Value: ၱ
Python:
char = '\u1071'
print(char) # Output: ၱ
Perl:
my $char = "\x{1071}";
print $char; # Output: ၱ
PHP:
$char = "\x{1071}";
echo $char; // Output: ၱ
Ruby:
char = "\u{1071}"
puts char # Output: ၱ
Rust:
let c = '\u{1071}';
println!("{}", c); // Output: ၱ
Go:
char := '\u1071'
fmt.Printf("%c\n", char) // Output: ၱ
CSS:
/* CSS content property */
.element::before {
content: "\001071"; /* 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%B1
MD5:
f789c3ad51c41c1b0e3bd4a3a319ce02
SHA1:
c671a60e1d98ee28aaf7e2491ab7522ff3c6fed7
Base64:
4YGx