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