C:
char c = '\u1B0E';
printf("%c\n", c); // Output: ᬎ
JavaScript:
const char = '\u1B0E';
console.log(char); // Output: ᬎ
Java:
char c = '\u1B0E';
System.out.println(c); // Output: ᬎ
JSON:
{"text": "\u1B0E"} // Value: ᬎ
Python:
char = '\u1B0E'
print(char) # Output: ᬎ
Perl:
my $char = "\x{1B0E}";
print $char; # Output: ᬎ
PHP:
$char = "\x{1B0E}";
echo $char; // Output: ᬎ
Ruby:
char = "\u{1B0E}"
puts char # Output: ᬎ
Rust:
let c = '\u{1B0E}';
println!("{}", c); // Output: ᬎ
Go:
char := '\u1B0E'
fmt.Printf("%c\n", char) // Output: ᬎ
CSS:
/* CSS content property */
.element::before {
content: "\001B0E"; /* 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%8E
MD5:
43f641f2e7530afa0b8d813185cc43b1
SHA1:
5b8c1605effcea2c006eef00e209c485262796ac
Base64:
4ayO