C:
char c = '\uA06F';
printf("%c\n", c); // Output: ꁯ
JavaScript:
const char = '\uA06F';
console.log(char); // Output: ꁯ
Java:
char c = '\uA06F';
System.out.println(c); // Output: ꁯ
JSON:
{"text": "\uA06F"} // Value: ꁯ
Python:
char = '\uA06F'
print(char) # Output: ꁯ
Perl:
my $char = "\x{A06F}";
print $char; # Output: ꁯ
PHP:
$char = "\x{A06F}";
echo $char; // Output: ꁯ
Ruby:
char = "\u{A06F}"
puts char # Output: ꁯ
Rust:
let c = '\u{A06F}';
println!("{}", c); // Output: ꁯ
Go:
char := '\uA06F'
fmt.Printf("%c\n", char) // Output: ꁯ
CSS:
/* CSS content property */
.element::before {
content: "\00A06F"; /* 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%81%AF
MD5:
75c39137fbca48c460158f29e21efc0a
SHA1:
ab76cef91cbd5e1dafe310a8930466e27c41555b
Base64:
6oGv