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