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