C:
char c = '\u2792';
printf("%c\n", c); // Output: ➒
JavaScript:
const char = '\u2792';
console.log(char); // Output: ➒
Java:
char c = '\u2792';
System.out.println(c); // Output: ➒
JSON:
{"text": "\u2792"} // Value: ➒
Python:
char = '\u2792'
print(char) # Output: ➒
Perl:
my $char = "\x{2792}";
print $char; # Output: ➒
PHP:
$char = "\x{2792}";
echo $char; // Output: ➒
Ruby:
char = "\u{2792}"
puts char # Output: ➒
Rust:
let c = '\u{2792}';
println!("{}", c); // Output: ➒
Go:
char := '\u2792'
fmt.Printf("%c\n", char) // Output: ➒
CSS:
/* CSS content property */
.element::before {
content: "\002792"; /* 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%92
MD5:
67b02dc8be72414c6d824d7eda162746
SHA1:
ca3e6620a47e045d598addb595907ea1a7a9cea5
Base64:
4p6S