C:
char c = '\u2948';
printf("%c\n", c); // Output: ⥈
JavaScript:
const char = '\u2948';
console.log(char); // Output: ⥈
Java:
char c = '\u2948';
System.out.println(c); // Output: ⥈
JSON:
{"text": "\u2948"} // Value: ⥈
Python:
char = '\u2948'
print(char) # Output: ⥈
Perl:
my $char = "\x{2948}";
print $char; # Output: ⥈
PHP:
$char = "\x{2948}";
echo $char; // Output: ⥈
Ruby:
char = "\u{2948}"
puts char # Output: ⥈
Rust:
let c = '\u{2948}';
println!("{}", c); // Output: ⥈
Go:
char := '\u2948'
fmt.Printf("%c\n", char) // Output: ⥈
CSS:
/* CSS content property */
.element::before {
content: "\002948"; /* 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%88
MD5:
e686fe1750e186e7d5465ed272f4cde5
SHA1:
238aac3576cf42adad6f5c7b3881aee57b434c8d
Base64:
4qWI