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