C:
char c = '\u2125';
printf("%c\n", c); // Output: ℥
JavaScript:
const char = '\u2125';
console.log(char); // Output: ℥
Java:
char c = '\u2125';
System.out.println(c); // Output: ℥
JSON:
{"text": "\u2125"} // Value: ℥
Python:
char = '\u2125'
print(char) # Output: ℥
Perl:
my $char = "\x{2125}";
print $char; # Output: ℥
PHP:
$char = "\x{2125}";
echo $char; // Output: ℥
Ruby:
char = "\u{2125}"
puts char # Output: ℥
Rust:
let c = '\u{2125}';
println!("{}", c); // Output: ℥
Go:
char := '\u2125'
fmt.Printf("%c\n", char) // Output: ℥
CSS:
/* CSS content property */
.element::before {
content: "\002125"; /* 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%A5
MD5:
cc311dfdb4ee61758d405c6f2ca9772e
SHA1:
caeae93378dc1995f3bf351bb90daf8f3e12046c
Base64:
4oSl