C:
char c = '\u2993';
printf("%c\n", c); // Output: ⦓
JavaScript:
const char = '\u2993';
console.log(char); // Output: ⦓
Java:
char c = '\u2993';
System.out.println(c); // Output: ⦓
JSON:
{"text": "\u2993"} // Value: ⦓
Python:
char = '\u2993'
print(char) # Output: ⦓
Perl:
my $char = "\x{2993}";
print $char; # Output: ⦓
PHP:
$char = "\x{2993}";
echo $char; // Output: ⦓
Ruby:
char = "\u{2993}"
puts char # Output: ⦓
Rust:
let c = '\u{2993}';
println!("{}", c); // Output: ⦓
Go:
char := '\u2993'
fmt.Printf("%c\n", char) // Output: ⦓
CSS:
/* CSS content property */
.element::before {
content: "\002993"; /* 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%A6%93
MD5:
771c6e95892621060028527bbdb83917
SHA1:
39a7ff980b07b823d6f6a25a923557eea2f75fa7
Base64:
4qaT