C:
char c = '\u1745';
printf("%c\n", c); // Output: ᝅ
JavaScript:
const char = '\u1745';
console.log(char); // Output: ᝅ
Java:
char c = '\u1745';
System.out.println(c); // Output: ᝅ
JSON:
{"text": "\u1745"} // Value: ᝅ
Python:
char = '\u1745'
print(char) # Output: ᝅ
Perl:
my $char = "\x{1745}";
print $char; # Output: ᝅ
PHP:
$char = "\x{1745}";
echo $char; // Output: ᝅ
Ruby:
char = "\u{1745}"
puts char # Output: ᝅ
Rust:
let c = '\u{1745}';
println!("{}", c); // Output: ᝅ
Go:
char := '\u1745'
fmt.Printf("%c\n", char) // Output: ᝅ
CSS:
/* CSS content property */
.element::before {
content: "\001745"; /* 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%85
MD5:
c7cf31debf4c35863cfe00088e4b1f9d
SHA1:
2bbc4494d74742c686f01e0d1f29766b40a71959
Base64:
4Z2F