C:
char c = '\u1192';
printf("%c\n", c); // Output: ᆒ
JavaScript:
const char = '\u1192';
console.log(char); // Output: ᆒ
Java:
char c = '\u1192';
System.out.println(c); // Output: ᆒ
JSON:
{"text": "\u1192"} // Value: ᆒ
Python:
char = '\u1192'
print(char) # Output: ᆒ
Perl:
my $char = "\x{1192}";
print $char; # Output: ᆒ
PHP:
$char = "\x{1192}";
echo $char; // Output: ᆒ
Ruby:
char = "\u{1192}"
puts char # Output: ᆒ
Rust:
let c = '\u{1192}';
println!("{}", c); // Output: ᆒ
Go:
char := '\u1192'
fmt.Printf("%c\n", char) // Output: ᆒ
CSS:
/* CSS content property */
.element::before {
content: "\001192"; /* 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%86%92
MD5:
4aa01a9f3c8749dcc8d59ac52f4f8ff6
SHA1:
75a24cb644ca347ee2560c448d57e2ea4c563231
Base64:
4YaS