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