C:
char c = '\u2123';
printf("%c\n", c); // Output: ℣
JavaScript:
const char = '\u2123';
console.log(char); // Output: ℣
Java:
char c = '\u2123';
System.out.println(c); // Output: ℣
JSON:
{"text": "\u2123"} // Value: ℣
Python:
char = '\u2123'
print(char) # Output: ℣
Perl:
my $char = "\x{2123}";
print $char; # Output: ℣
PHP:
$char = "\x{2123}";
echo $char; // Output: ℣
Ruby:
char = "\u{2123}"
puts char # Output: ℣
Rust:
let c = '\u{2123}';
println!("{}", c); // Output: ℣
Go:
char := '\u2123'
fmt.Printf("%c\n", char) // Output: ℣
CSS:
/* CSS content property */
.element::before {
content: "\002123"; /* 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%A3
MD5:
1bd84db773fd839d848d129973fbf9e1
SHA1:
430ad8802d0b7fbc6f29d924140951dc03d518ae
Base64:
4oSj