C:
char c = '\u1198';
printf("%c\n", c); // Output: ᆘ
JavaScript:
const char = '\u1198';
console.log(char); // Output: ᆘ
Java:
char c = '\u1198';
System.out.println(c); // Output: ᆘ
JSON:
{"text": "\u1198"} // Value: ᆘ
Python:
char = '\u1198'
print(char) # Output: ᆘ
Perl:
my $char = "\x{1198}";
print $char; # Output: ᆘ
PHP:
$char = "\x{1198}";
echo $char; // Output: ᆘ
Ruby:
char = "\u{1198}"
puts char # Output: ᆘ
Rust:
let c = '\u{1198}';
println!("{}", c); // Output: ᆘ
Go:
char := '\u1198'
fmt.Printf("%c\n", char) // Output: ᆘ
CSS:
/* CSS content property */
.element::before {
content: "\001198"; /* 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%98
MD5:
6a8b5bbff76d81ad80015780523c810d
SHA1:
94dd21a4c70648cebdf3eb8d2008a636be07b841
Base64:
4YaY