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