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