C:
char c = '\u2757';
printf("%c\n", c); // Output: ❗
JavaScript:
const char = '\u2757';
console.log(char); // Output: ❗
Java:
char c = '\u2757';
System.out.println(c); // Output: ❗
JSON:
{"text": "\u2757"} // Value: ❗
Python:
char = '\u2757'
print(char) # Output: ❗
Perl:
my $char = "\x{2757}";
print $char; # Output: ❗
PHP:
$char = "\x{2757}";
echo $char; // Output: ❗
Ruby:
char = "\u{2757}"
puts char # Output: ❗
Rust:
let c = '\u{2757}';
println!("{}", c); // Output: ❗
Go:
char := '\u2757'
fmt.Printf("%c\n", char) // Output: ❗
CSS:
/* CSS content property */
.element::before {
content: "\002757"; /* 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%9D%97
MD5:
1c4e2664c593e49b30f580441a8565d8
SHA1:
904d98ab7b1eefa06b8c6bb61c6518b5e391c9a7
Base64:
4p2X