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