C:
char c = '\u1742';
printf("%c\n", c); // Output: ᝂ
JavaScript:
const char = '\u1742';
console.log(char); // Output: ᝂ
Java:
char c = '\u1742';
System.out.println(c); // Output: ᝂ
JSON:
{"text": "\u1742"} // Value: ᝂ
Python:
char = '\u1742'
print(char) # Output: ᝂ
Perl:
my $char = "\x{1742}";
print $char; # Output: ᝂ
PHP:
$char = "\x{1742}";
echo $char; // Output: ᝂ
Ruby:
char = "\u{1742}"
puts char # Output: ᝂ
Rust:
let c = '\u{1742}';
println!("{}", c); // Output: ᝂ
Go:
char := '\u1742'
fmt.Printf("%c\n", char) // Output: ᝂ
CSS:
/* CSS content property */
.element::before {
content: "\001742"; /* 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=%E1%9D%82
MD5:
58a6ba6dc1a9a11883ac9a7726a6a589
SHA1:
5fae927827474521f43702090367e63ad6e0156d
Base64:
4Z2C