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