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