C:
char c = '\u296A';
printf("%c\n", c); // Output: ⥪
JavaScript:
const char = '\u296A';
console.log(char); // Output: ⥪
Java:
char c = '\u296A';
System.out.println(c); // Output: ⥪
JSON:
{"text": "\u296A"} // Value: ⥪
Python:
char = '\u296A'
print(char) # Output: ⥪
Perl:
my $char = "\x{296A}";
print $char; # Output: ⥪
PHP:
$char = "\x{296A}";
echo $char; // Output: ⥪
Ruby:
char = "\u{296A}"
puts char # Output: ⥪
Rust:
let c = '\u{296A}';
println!("{}", c); // Output: ⥪
Go:
char := '\u296A'
fmt.Printf("%c\n", char) // Output: ⥪
CSS:
/* CSS content property */
.element::before {
content: "\00296A"; /* 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%AA
MD5:
ee6de59242b72cf4ff7fcd5636868ef8
SHA1:
681124b29f23950a261726821f1b85537f752007
Base64:
4qWq