C:
char c = '\u1984';
printf("%c\n", c); // Output: ᦄ
JavaScript:
const char = '\u1984';
console.log(char); // Output: ᦄ
Java:
char c = '\u1984';
System.out.println(c); // Output: ᦄ
JSON:
{"text": "\u1984"} // Value: ᦄ
Python:
char = '\u1984'
print(char) # Output: ᦄ
Perl:
my $char = "\x{1984}";
print $char; # Output: ᦄ
PHP:
$char = "\x{1984}";
echo $char; // Output: ᦄ
Ruby:
char = "\u{1984}"
puts char # Output: ᦄ
Rust:
let c = '\u{1984}';
println!("{}", c); // Output: ᦄ
Go:
char := '\u1984'
fmt.Printf("%c\n", char) // Output: ᦄ
CSS:
/* CSS content property */
.element::before {
content: "\001984"; /* 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%84
MD5:
e21988994318355bd0321fdfd9df820c
SHA1:
f70447ba166aac4c5944ec52c9dbd292a5c34cab
Base64:
4aaE