C:
char c = '\u1C49';
printf("%c\n", c); // Output: ᱉
JavaScript:
const char = '\u1C49';
console.log(char); // Output: ᱉
Java:
char c = '\u1C49';
System.out.println(c); // Output: ᱉
JSON:
{"text": "\u1C49"} // Value: ᱉
Python:
char = '\u1C49'
print(char) # Output: ᱉
Perl:
my $char = "\x{1C49}";
print $char; # Output: ᱉
PHP:
$char = "\x{1C49}";
echo $char; // Output: ᱉
Ruby:
char = "\u{1C49}"
puts char # Output: ᱉
Rust:
let c = '\u{1C49}';
println!("{}", c); // Output: ᱉
Go:
char := '\u1C49'
fmt.Printf("%c\n", char) // Output: ᱉
CSS:
/* CSS content property */
.element::before {
content: "\001C49"; /* 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%B1%89
MD5:
3cd4c4203b5862ca8efacedda280e352
SHA1:
d6e8de736decc5f01545a78f00f7338eb70adc49
Base64:
4bGJ