C:
char c = '\u2054';
printf("%c\n", c); // Output: ⁔
JavaScript:
const char = '\u2054';
console.log(char); // Output: ⁔
Java:
char c = '\u2054';
System.out.println(c); // Output: ⁔
JSON:
{"text": "\u2054"} // Value: ⁔
Python:
char = '\u2054'
print(char) # Output: ⁔
Perl:
my $char = "\x{2054}";
print $char; # Output: ⁔
PHP:
$char = "\x{2054}";
echo $char; // Output: ⁔
Ruby:
char = "\u{2054}"
puts char # Output: ⁔
Rust:
let c = '\u{2054}';
println!("{}", c); // Output: ⁔
Go:
char := '\u2054'
fmt.Printf("%c\n", char) // Output: ⁔
CSS:
/* CSS content property */
.element::before {
content: "\002054"; /* 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%94
MD5:
1723325bf3d9d0bd2c805920a02a8de7
SHA1:
3ea619f1547d57a383e9c112f8f2d7aa08680daa
Base64:
4oGU