C:
char c = '\u2129';
printf("%c\n", c); // Output: ℩
JavaScript:
const char = '\u2129';
console.log(char); // Output: ℩
Java:
char c = '\u2129';
System.out.println(c); // Output: ℩
JSON:
{"text": "\u2129"} // Value: ℩
Python:
char = '\u2129'
print(char) # Output: ℩
Perl:
my $char = "\x{2129}";
print $char; # Output: ℩
PHP:
$char = "\x{2129}";
echo $char; // Output: ℩
Ruby:
char = "\u{2129}"
puts char # Output: ℩
Rust:
let c = '\u{2129}';
println!("{}", c); // Output: ℩
Go:
char := '\u2129'
fmt.Printf("%c\n", char) // Output: ℩
CSS:
/* CSS content property */
.element::before {
content: "\002129"; /* 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%A9
MD5:
8c682e1da0528f3de6a78d4b6150e930
SHA1:
911be3cab12b6963f096c6f726a59a5f3a124da9
Base64:
4oSp