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