C:
char c = '\u2050';
printf("%c\n", c); // Output: ⁐
JavaScript:
const char = '\u2050';
console.log(char); // Output: ⁐
Java:
char c = '\u2050';
System.out.println(c); // Output: ⁐
JSON:
{"text": "\u2050"} // Value: ⁐
Python:
char = '\u2050'
print(char) # Output: ⁐
Perl:
my $char = "\x{2050}";
print $char; # Output: ⁐
PHP:
$char = "\x{2050}";
echo $char; // Output: ⁐
Ruby:
char = "\u{2050}"
puts char # Output: ⁐
Rust:
let c = '\u{2050}';
println!("{}", c); // Output: ⁐
Go:
char := '\u2050'
fmt.Printf("%c\n", char) // Output: ⁐
CSS:
/* CSS content property */
.element::before {
content: "\002050"; /* 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%90
MD5:
0989cfb9eec0af66db1f3f47422e744f
SHA1:
13789d9990d12b503f8bc888f15b47fe941fa78a
Base64:
4oGQ