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