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