C:
char c = '\u2240';
printf("%c\n", c); // Output: ≀
JavaScript:
const char = '\u2240';
console.log(char); // Output: ≀
Java:
char c = '\u2240';
System.out.println(c); // Output: ≀
JSON:
{"text": "\u2240"} // Value: ≀
Python:
char = '\u2240'
print(char) # Output: ≀
Perl:
my $char = "\x{2240}";
print $char; # Output: ≀
PHP:
$char = "\x{2240}";
echo $char; // Output: ≀
Ruby:
char = "\u{2240}"
puts char # Output: ≀
Rust:
let c = '\u{2240}';
println!("{}", c); // Output: ≀
Go:
char := '\u2240'
fmt.Printf("%c\n", char) // Output: ≀
CSS:
/* CSS content property */
.element::before {
content: "\002240"; /* 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%89%80
MD5:
d17fda5162625a04efe5e9a1b7f65983
SHA1:
1ab5fdfe95cdb03db9e8019668306b9abfd2406e
Base64:
4omA