C:
char c = '\u221A';
printf("%c\n", c); // Output: √
JavaScript:
const char = '\u221A';
console.log(char); // Output: √
Java:
char c = '\u221A';
System.out.println(c); // Output: √
JSON:
{"text": "\u221A"} // Value: √
Python:
char = '\u221A'
print(char) # Output: √
Perl:
my $char = "\x{221A}";
print $char; # Output: √
PHP:
$char = "\x{221A}";
echo $char; // Output: √
Ruby:
char = "\u{221A}"
puts char # Output: √
Rust:
let c = '\u{221A}';
println!("{}", c); // Output: √
Go:
char := '\u221A'
fmt.Printf("%c\n", char) // Output: √
CSS:
/* CSS content property */
.element::before {
content: "\00221A"; /* 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%88%9A
MD5:
206a42c27c25d27934b59a320a4ca0ca
SHA1:
f5cba8d95daaf095ae91fccc09f1877a7fe7c081
Base64:
4oia