C:
char c = '\u2789';
printf("%c\n", c); // Output: ➉
JavaScript:
const char = '\u2789';
console.log(char); // Output: ➉
Java:
char c = '\u2789';
System.out.println(c); // Output: ➉
JSON:
{"text": "\u2789"} // Value: ➉
Python:
char = '\u2789'
print(char) # Output: ➉
Perl:
my $char = "\x{2789}";
print $char; # Output: ➉
PHP:
$char = "\x{2789}";
echo $char; // Output: ➉
Ruby:
char = "\u{2789}"
puts char # Output: ➉
Rust:
let c = '\u{2789}';
println!("{}", c); // Output: ➉
Go:
char := '\u2789'
fmt.Printf("%c\n", char) // Output: ➉
CSS:
/* CSS content property */
.element::before {
content: "\002789"; /* 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%89
MD5:
eee3836c51988666c7667546e8dbee0b
SHA1:
40a4fb68bf074101c14c0d35e67412119b3afce7
Base64:
4p6J