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