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