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