C:
char c = '\u1851';
printf("%c\n", c); // Output: ᡑ
JavaScript:
const char = '\u1851';
console.log(char); // Output: ᡑ
Java:
char c = '\u1851';
System.out.println(c); // Output: ᡑ
JSON:
{"text": "\u1851"} // Value: ᡑ
Python:
char = '\u1851'
print(char) # Output: ᡑ
Perl:
my $char = "\x{1851}";
print $char; # Output: ᡑ
PHP:
$char = "\x{1851}";
echo $char; // Output: ᡑ
Ruby:
char = "\u{1851}"
puts char # Output: ᡑ
Rust:
let c = '\u{1851}';
println!("{}", c); // Output: ᡑ
Go:
char := '\u1851'
fmt.Printf("%c\n", char) // Output: ᡑ
CSS:
/* CSS content property */
.element::before {
content: "\001851"; /* 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%91
MD5:
809819edf736e5a2632f35b573b0b3a7
SHA1:
cbbb17be28948b1ccf1a89881d9183a61a267195
Base64:
4aGR