C:
char c = '\u21A9';
printf("%c\n", c); // Output: ↩
JavaScript:
const char = '\u21A9';
console.log(char); // Output: ↩
Java:
char c = '\u21A9';
System.out.println(c); // Output: ↩
JSON:
{"text": "\u21A9"} // Value: ↩
Python:
char = '\u21A9'
print(char) # Output: ↩
Perl:
my $char = "\x{21A9}";
print $char; # Output: ↩
PHP:
$char = "\x{21A9}";
echo $char; // Output: ↩
Ruby:
char = "\u{21A9}"
puts char # Output: ↩
Rust:
let c = '\u{21A9}';
println!("{}", c); // Output: ↩
Go:
char := '\u21A9'
fmt.Printf("%c\n", char) // Output: ↩
CSS:
/* CSS content property */
.element::before {
content: "\0021A9"; /* 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%86%A9
MD5:
d737d99d3cee0c23938b94ebd13a441e
SHA1:
fe870e9c6897acd3aac13eed34f5507cf9264591
Base64:
4oap