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