C:
char c = '\u1746';
printf("%c\n", c); // Output: ᝆ
JavaScript:
const char = '\u1746';
console.log(char); // Output: ᝆ
Java:
char c = '\u1746';
System.out.println(c); // Output: ᝆ
JSON:
{"text": "\u1746"} // Value: ᝆ
Python:
char = '\u1746'
print(char) # Output: ᝆ
Perl:
my $char = "\x{1746}";
print $char; # Output: ᝆ
PHP:
$char = "\x{1746}";
echo $char; // Output: ᝆ
Ruby:
char = "\u{1746}"
puts char # Output: ᝆ
Rust:
let c = '\u{1746}';
println!("{}", c); // Output: ᝆ
Go:
char := '\u1746'
fmt.Printf("%c\n", char) // Output: ᝆ
CSS:
/* CSS content property */
.element::before {
content: "\001746"; /* 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%86
MD5:
eaa8d13e0251667b659e9892d718997a
SHA1:
9c291bd1535b430e4440c1155e9cfce92724e64a
Base64:
4Z2G