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