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