C:
char c = '\u271B';
printf("%c\n", c); // Output: ✛
JavaScript:
const char = '\u271B';
console.log(char); // Output: ✛
Java:
char c = '\u271B';
System.out.println(c); // Output: ✛
JSON:
{"text": "\u271B"} // Value: ✛
Python:
char = '\u271B'
print(char) # Output: ✛
Perl:
my $char = "\x{271B}";
print $char; # Output: ✛
PHP:
$char = "\x{271B}";
echo $char; // Output: ✛
Ruby:
char = "\u{271B}"
puts char # Output: ✛
Rust:
let c = '\u{271B}';
println!("{}", c); // Output: ✛
Go:
char := '\u271B'
fmt.Printf("%c\n", char) // Output: ✛
CSS:
/* CSS content property */
.element::before {
content: "\00271B"; /* 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%9B
MD5:
f558f6460ebd9f0387945413942759b7
SHA1:
227dbdaf0e470b5aed1eece51ef713ccf7ef83fc
Base64:
4pyb