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