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