C:
char c = '\u2949';
printf("%c\n", c); // Output: ⥉
JavaScript:
const char = '\u2949';
console.log(char); // Output: ⥉
Java:
char c = '\u2949';
System.out.println(c); // Output: ⥉
JSON:
{"text": "\u2949"} // Value: ⥉
Python:
char = '\u2949'
print(char) # Output: ⥉
Perl:
my $char = "\x{2949}";
print $char; # Output: ⥉
PHP:
$char = "\x{2949}";
echo $char; // Output: ⥉
Ruby:
char = "\u{2949}"
puts char # Output: ⥉
Rust:
let c = '\u{2949}';
println!("{}", c); // Output: ⥉
Go:
char := '\u2949'
fmt.Printf("%c\n", char) // Output: ⥉
CSS:
/* CSS content property */
.element::before {
content: "\002949"; /* 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%89
MD5:
71b9d9988c5d3f56e4bf579d5a888834
SHA1:
05df95f96c2ab3e53e70d2629784d489d3cd253d
Base64:
4qWJ