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