C:
char c = '\u1882';
printf("%c\n", c); // Output: ᢂ
JavaScript:
const char = '\u1882';
console.log(char); // Output: ᢂ
Java:
char c = '\u1882';
System.out.println(c); // Output: ᢂ
JSON:
{"text": "\u1882"} // Value: ᢂ
Python:
char = '\u1882'
print(char) # Output: ᢂ
Perl:
my $char = "\x{1882}";
print $char; # Output: ᢂ
PHP:
$char = "\x{1882}";
echo $char; // Output: ᢂ
Ruby:
char = "\u{1882}"
puts char # Output: ᢂ
Rust:
let c = '\u{1882}';
println!("{}", c); // Output: ᢂ
Go:
char := '\u1882'
fmt.Printf("%c\n", char) // Output: ᢂ
CSS:
/* CSS content property */
.element::before {
content: "\001882"; /* 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%A2%82
MD5:
fa78823024c32e8bd4c5746150250b57
SHA1:
6363f59bcfd2838e65fdb4d9950c3ef31f09e27d
Base64:
4aKC