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