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