C:
char c = '\u2040';
printf("%c\n", c); // Output: ⁀
JavaScript:
const char = '\u2040';
console.log(char); // Output: ⁀
Java:
char c = '\u2040';
System.out.println(c); // Output: ⁀
JSON:
{"text": "\u2040"} // Value: ⁀
Python:
char = '\u2040'
print(char) # Output: ⁀
Perl:
my $char = "\x{2040}";
print $char; # Output: ⁀
PHP:
$char = "\x{2040}";
echo $char; // Output: ⁀
Ruby:
char = "\u{2040}"
puts char # Output: ⁀
Rust:
let c = '\u{2040}';
println!("{}", c); // Output: ⁀
Go:
char := '\u2040'
fmt.Printf("%c\n", char) // Output: ⁀
CSS:
/* CSS content property */
.element::before {
content: "\002040"; /* 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%81%80
MD5:
53629bb424ec1ba3d851e1c188c96d37
SHA1:
0b04c9b60e38ce052401d7a22afb8dcf9545831a
Base64:
4oGA