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