C:
char c = '\u294D';
printf("%c\n", c); // Output: ⥍
JavaScript:
const char = '\u294D';
console.log(char); // Output: ⥍
Java:
char c = '\u294D';
System.out.println(c); // Output: ⥍
JSON:
{"text": "\u294D"} // Value: ⥍
Python:
char = '\u294D'
print(char) # Output: ⥍
Perl:
my $char = "\x{294D}";
print $char; # Output: ⥍
PHP:
$char = "\x{294D}";
echo $char; // Output: ⥍
Ruby:
char = "\u{294D}"
puts char # Output: ⥍
Rust:
let c = '\u{294D}';
println!("{}", c); // Output: ⥍
Go:
char := '\u294D'
fmt.Printf("%c\n", char) // Output: ⥍
CSS:
/* CSS content property */
.element::before {
content: "\00294D"; /* 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=%E2%A5%8D
MD5:
732f66e8ef5ea65879d90135599b7389
SHA1:
9850e68af4648c88f5f7b687ce2b8bdfabbfe999
Base64:
4qWN