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