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