C:
char c = '\u2142';
printf("%c\n", c); // Output: ⅂
JavaScript:
const char = '\u2142';
console.log(char); // Output: ⅂
Java:
char c = '\u2142';
System.out.println(c); // Output: ⅂
JSON:
{"text": "\u2142"} // Value: ⅂
Python:
char = '\u2142'
print(char) # Output: ⅂
Perl:
my $char = "\x{2142}";
print $char; # Output: ⅂
PHP:
$char = "\x{2142}";
echo $char; // Output: ⅂
Ruby:
char = "\u{2142}"
puts char # Output: ⅂
Rust:
let c = '\u{2142}';
println!("{}", c); // Output: ⅂
Go:
char := '\u2142'
fmt.Printf("%c\n", char) // Output: ⅂
CSS:
/* CSS content property */
.element::before {
content: "\002142"; /* 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%85%82
MD5:
16ff7696cc98d7bc63d0d6eefc90ac47
SHA1:
c13485cdd1c13c07f6bdfeeb738368e61758e4d0
Base64:
4oWC