C:
char c = '\u1844';
printf("%c\n", c); // Output: ᡄ
JavaScript:
const char = '\u1844';
console.log(char); // Output: ᡄ
Java:
char c = '\u1844';
System.out.println(c); // Output: ᡄ
JSON:
{"text": "\u1844"} // Value: ᡄ
Python:
char = '\u1844'
print(char) # Output: ᡄ
Perl:
my $char = "\x{1844}";
print $char; # Output: ᡄ
PHP:
$char = "\x{1844}";
echo $char; // Output: ᡄ
Ruby:
char = "\u{1844}"
puts char # Output: ᡄ
Rust:
let c = '\u{1844}';
println!("{}", c); // Output: ᡄ
Go:
char := '\u1844'
fmt.Printf("%c\n", char) // Output: ᡄ
CSS:
/* CSS content property */
.element::before {
content: "\001844"; /* 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%A1%84
MD5:
a30699a87cd543ff2eb08ee35f8dcbda
SHA1:
ba188e22bdd1ddef954f39c891432ec58d365c4d
Base64:
4aGE