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