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