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