C:
char c = '\u272D';
printf("%c\n", c); // Output: ✭
JavaScript:
const char = '\u272D';
console.log(char); // Output: ✭
Java:
char c = '\u272D';
System.out.println(c); // Output: ✭
JSON:
{"text": "\u272D"} // Value: ✭
Python:
char = '\u272D'
print(char) # Output: ✭
Perl:
my $char = "\x{272D}";
print $char; # Output: ✭
PHP:
$char = "\x{272D}";
echo $char; // Output: ✭
Ruby:
char = "\u{272D}"
puts char # Output: ✭
Rust:
let c = '\u{272D}';
println!("{}", c); // Output: ✭
Go:
char := '\u272D'
fmt.Printf("%c\n", char) // Output: ✭
CSS:
/* CSS content property */
.element::before {
content: "\00272D"; /* 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%AD
MD5:
7e8c808115138b7e9c9d3794eb75001f
SHA1:
a2e522614d23cabb8135e93cf0287bd82876c297
Base64:
4pyt