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