C:
char c = '\u2955';
printf("%c\n", c); // Output: ⥕
JavaScript:
const char = '\u2955';
console.log(char); // Output: ⥕
Java:
char c = '\u2955';
System.out.println(c); // Output: ⥕
JSON:
{"text": "\u2955"} // Value: ⥕
Python:
char = '\u2955'
print(char) # Output: ⥕
Perl:
my $char = "\x{2955}";
print $char; # Output: ⥕
PHP:
$char = "\x{2955}";
echo $char; // Output: ⥕
Ruby:
char = "\u{2955}"
puts char # Output: ⥕
Rust:
let c = '\u{2955}';
println!("{}", c); // Output: ⥕
Go:
char := '\u2955'
fmt.Printf("%c\n", char) // Output: ⥕
CSS:
/* CSS content property */
.element::before {
content: "\002955"; /* 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%95
MD5:
8bab3931f5a2434fb2c57689ba6a88d6
SHA1:
818ff9666ec2929f7579bf3423d8e991089e41b4
Base64:
4qWV