C:
char c = '\u270A';
printf("%c\n", c); // Output: ✊
JavaScript:
const char = '\u270A';
console.log(char); // Output: ✊
Java:
char c = '\u270A';
System.out.println(c); // Output: ✊
JSON:
{"text": "\u270A"} // Value: ✊
Python:
char = '\u270A'
print(char) # Output: ✊
Perl:
my $char = "\x{270A}";
print $char; # Output: ✊
PHP:
$char = "\x{270A}";
echo $char; // Output: ✊
Ruby:
char = "\u{270A}"
puts char # Output: ✊
Rust:
let c = '\u{270A}';
println!("{}", c); // Output: ✊
Go:
char := '\u270A'
fmt.Printf("%c\n", char) // Output: ✊
CSS:
/* CSS content property */
.element::before {
content: "\00270A"; /* 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%9C%8A
MD5:
78585215ca096cb9ebb6da9b2433890f
SHA1:
157e3a60e64a7a658ed96cecbdf22966d3176f11
Base64:
4pyK