C:
char c = '\u219E';
printf("%c\n", c); // Output: ↞
JavaScript:
const char = '\u219E';
console.log(char); // Output: ↞
Java:
char c = '\u219E';
System.out.println(c); // Output: ↞
JSON:
{"text": "\u219E"} // Value: ↞
Python:
char = '\u219E'
print(char) # Output: ↞
Perl:
my $char = "\x{219E}";
print $char; # Output: ↞
PHP:
$char = "\x{219E}";
echo $char; // Output: ↞
Ruby:
char = "\u{219E}"
puts char # Output: ↞
Rust:
let c = '\u{219E}';
println!("{}", c); // Output: ↞
Go:
char := '\u219E'
fmt.Printf("%c\n", char) // Output: ↞
CSS:
/* CSS content property */
.element::before {
content: "\00219E"; /* 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%9E
MD5:
176f926bdd7a754dff28f042d7270f4d
SHA1:
b8d4015dd9b98895f7dab47b1c7c6b5d61b28ae0
Base64:
4oae