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