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