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