C:
char c = '\uA06D';
printf("%c\n", c); // Output: ꁭ
JavaScript:
const char = '\uA06D';
console.log(char); // Output: ꁭ
Java:
char c = '\uA06D';
System.out.println(c); // Output: ꁭ
JSON:
{"text": "\uA06D"} // Value: ꁭ
Python:
char = '\uA06D'
print(char) # Output: ꁭ
Perl:
my $char = "\x{A06D}";
print $char; # Output: ꁭ
PHP:
$char = "\x{A06D}";
echo $char; // Output: ꁭ
Ruby:
char = "\u{A06D}"
puts char # Output: ꁭ
Rust:
let c = '\u{A06D}';
println!("{}", c); // Output: ꁭ
Go:
char := '\uA06D'
fmt.Printf("%c\n", char) // Output: ꁭ
CSS:
/* CSS content property */
.element::before {
content: "\00A06D"; /* 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%AD
MD5:
767e3acbff8d4f04fcb5aa924335ba3b
SHA1:
1962c797487f4051556b539e13aacee1fc41bf71
Base64:
6oGt