C:
char c = '\uA342';
printf("%c\n", c); // Output: ꍂ
JavaScript:
const char = '\uA342';
console.log(char); // Output: ꍂ
Java:
char c = '\uA342';
System.out.println(c); // Output: ꍂ
JSON:
{"text": "\uA342"} // Value: ꍂ
Python:
char = '\uA342'
print(char) # Output: ꍂ
Perl:
my $char = "\x{A342}";
print $char; # Output: ꍂ
PHP:
$char = "\x{A342}";
echo $char; // Output: ꍂ
Ruby:
char = "\u{A342}"
puts char # Output: ꍂ
Rust:
let c = '\u{A342}';
println!("{}", c); // Output: ꍂ
Go:
char := '\uA342'
fmt.Printf("%c\n", char) // Output: ꍂ
CSS:
/* CSS content property */
.element::before {
content: "\00A342"; /* 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%8D%82
MD5:
a9f7b42a2810c0ef85a9d97281ab05ff
SHA1:
4f97856d13476771f7029d1c71306cb5f8723633
Base64:
6o2C