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