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