C:
char c = '\uA983';
printf("%c\n", c); // Output: ꦃ
JavaScript:
const char = '\uA983';
console.log(char); // Output: ꦃ
Java:
char c = '\uA983';
System.out.println(c); // Output: ꦃ
JSON:
{"text": "\uA983"} // Value: ꦃ
Python:
char = '\uA983'
print(char) # Output: ꦃ
Perl:
my $char = "\x{A983}";
print $char; # Output: ꦃ
PHP:
$char = "\x{A983}";
echo $char; // Output: ꦃ
Ruby:
char = "\u{A983}"
puts char # Output: ꦃ
Rust:
let c = '\u{A983}';
println!("{}", c); // Output: ꦃ
Go:
char := '\uA983'
fmt.Printf("%c\n", char) // Output: ꦃ
CSS:
/* CSS content property */
.element::before {
content: "\00A983"; /* 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%A6%83
MD5:
0ec343dd1152e7ac41d3b1b7c95a0fd4
SHA1:
892a8915038ae7eaea43c0bbcf865f1f10c058b6
Base64:
6qaD