C:
char c = '\u2380';
printf("%c\n", c); // Output: ⎀
JavaScript:
const char = '\u2380';
console.log(char); // Output: ⎀
Java:
char c = '\u2380';
System.out.println(c); // Output: ⎀
JSON:
{"text": "\u2380"} // Value: ⎀
Python:
char = '\u2380'
print(char) # Output: ⎀
Perl:
my $char = "\x{2380}";
print $char; # Output: ⎀
PHP:
$char = "\x{2380}";
echo $char; // Output: ⎀
Ruby:
char = "\u{2380}"
puts char # Output: ⎀
Rust:
let c = '\u{2380}';
println!("{}", c); // Output: ⎀
Go:
char := '\u2380'
fmt.Printf("%c\n", char) // Output: ⎀
CSS:
/* CSS content property */
.element::before {
content: "\002380"; /* 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%8E%80
MD5:
1124a79205d8c118c0407b35f1e45be7
SHA1:
ab25612753dbe188999ea0e6789f0411bf43ef22
Base64:
4o6A