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