C:
char c = '\u2044';
printf("%c\n", c); // Output: ⁄
JavaScript:
const char = '\u2044';
console.log(char); // Output: ⁄
Java:
char c = '\u2044';
System.out.println(c); // Output: ⁄
JSON:
{"text": "\u2044"} // Value: ⁄
Python:
char = '\u2044'
print(char) # Output: ⁄
Perl:
my $char = "\x{2044}";
print $char; # Output: ⁄
PHP:
$char = "\x{2044}";
echo $char; // Output: ⁄
Ruby:
char = "\u{2044}"
puts char # Output: ⁄
Rust:
let c = '\u{2044}';
println!("{}", c); // Output: ⁄
Go:
char := '\u2044'
fmt.Printf("%c\n", char) // Output: ⁄
CSS:
/* CSS content property */
.element::before {
content: "\002044"; /* 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%84
MD5:
bd7dc67340c38f9d1aea6210c5d0eccd
SHA1:
5a0bd89283bcf8d564ad68800da852037cab2c10
Base64:
4oGE