C:
char c = '\uA6BF';
printf("%c\n", c); // Output: ꚿ
JavaScript:
const char = '\uA6BF';
console.log(char); // Output: ꚿ
Java:
char c = '\uA6BF';
System.out.println(c); // Output: ꚿ
JSON:
{"text": "\uA6BF"} // Value: ꚿ
Python:
char = '\uA6BF'
print(char) # Output: ꚿ
Perl:
my $char = "\x{A6BF}";
print $char; # Output: ꚿ
PHP:
$char = "\x{A6BF}";
echo $char; // Output: ꚿ
Ruby:
char = "\u{A6BF}"
puts char # Output: ꚿ
Rust:
let c = '\u{A6BF}';
println!("{}", c); // Output: ꚿ
Go:
char := '\uA6BF'
fmt.Printf("%c\n", char) // Output: ꚿ
CSS:
/* CSS content property */
.element::before {
content: "\00A6BF"; /* 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=%EA%9A%BF
MD5:
a1d412635e6b893936ab1eb3fda3fe5e
SHA1:
c47ac7c5d99b5a44201105e5b57eca8567df6095
Base64:
6pq/