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