C:
char c = '\u23A5';
printf("%c\n", c); // Output: ⎥
JavaScript:
const char = '\u23A5';
console.log(char); // Output: ⎥
Java:
char c = '\u23A5';
System.out.println(c); // Output: ⎥
JSON:
{"text": "\u23A5"} // Value: ⎥
Python:
char = '\u23A5'
print(char) # Output: ⎥
Perl:
my $char = "\x{23A5}";
print $char; # Output: ⎥
PHP:
$char = "\x{23A5}";
echo $char; // Output: ⎥
Ruby:
char = "\u{23A5}"
puts char # Output: ⎥
Rust:
let c = '\u{23A5}';
println!("{}", c); // Output: ⎥
Go:
char := '\u23A5'
fmt.Printf("%c\n", char) // Output: ⎥
CSS:
/* CSS content property */
.element::before {
content: "\0023A5"; /* 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%A5
MD5:
730fc6b3b4585d7c0e5c4523fa9db249
SHA1:
f208692f951897e40af949559f2d79e59ccaee98
Base64:
4o6l