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