C:
char c = '\u278E';
printf("%c\n", c); // Output: ➎
JavaScript:
const char = '\u278E';
console.log(char); // Output: ➎
Java:
char c = '\u278E';
System.out.println(c); // Output: ➎
JSON:
{"text": "\u278E"} // Value: ➎
Python:
char = '\u278E'
print(char) # Output: ➎
Perl:
my $char = "\x{278E}";
print $char; # Output: ➎
PHP:
$char = "\x{278E}";
echo $char; // Output: ➎
Ruby:
char = "\u{278E}"
puts char # Output: ➎
Rust:
let c = '\u{278E}';
println!("{}", c); // Output: ➎
Go:
char := '\u278E'
fmt.Printf("%c\n", char) // Output: ➎
CSS:
/* CSS content property */
.element::before {
content: "\00278E"; /* 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%8E
MD5:
48388bccd3c3f38cd31dd29cb18f24c6
SHA1:
ef158c935e81110791c6a2679a70406139b9bfb4
Base64:
4p6O