C:
char c = '\u2132';
printf("%c\n", c); // Output: Ⅎ
JavaScript:
const char = '\u2132';
console.log(char); // Output: Ⅎ
Java:
char c = '\u2132';
System.out.println(c); // Output: Ⅎ
JSON:
{"text": "\u2132"} // Value: Ⅎ
Python:
char = '\u2132'
print(char) # Output: Ⅎ
Perl:
my $char = "\x{2132}";
print $char; # Output: Ⅎ
PHP:
$char = "\x{2132}";
echo $char; // Output: Ⅎ
Ruby:
char = "\u{2132}"
puts char # Output: Ⅎ
Rust:
let c = '\u{2132}';
println!("{}", c); // Output: Ⅎ
Go:
char := '\u2132'
fmt.Printf("%c\n", char) // Output: Ⅎ
CSS:
/* CSS content property */
.element::before {
content: "\002132"; /* 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%B2
MD5:
7e8f96a30ba0098d077fb803f92fccd0
SHA1:
2e0d4618c7cfd488b457b34e841af1c331de691e
Base64:
4oSy