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