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