C:
char c = '\u2114';
printf("%c\n", c); // Output: ℔
JavaScript:
const char = '\u2114';
console.log(char); // Output: ℔
Java:
char c = '\u2114';
System.out.println(c); // Output: ℔
JSON:
{"text": "\u2114"} // Value: ℔
Python:
char = '\u2114'
print(char) # Output: ℔
Perl:
my $char = "\x{2114}";
print $char; # Output: ℔
PHP:
$char = "\x{2114}";
echo $char; // Output: ℔
Ruby:
char = "\u{2114}"
puts char # Output: ℔
Rust:
let c = '\u{2114}';
println!("{}", c); // Output: ℔
Go:
char := '\u2114'
fmt.Printf("%c\n", char) // Output: ℔
CSS:
/* CSS content property */
.element::before {
content: "\002114"; /* 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%94
MD5:
8b6c962a4ec6d432f560ea9f74143003
SHA1:
5726a934dc5527981b6da2a4d3e95670e0a75980
Base64:
4oSU