C:
char c = '\u05BE';
printf("%c\n", c); // Output: ־
JavaScript:
const char = '\u05BE';
console.log(char); // Output: ־
Java:
char c = '\u05BE';
System.out.println(c); // Output: ־
JSON:
{"text": "\u05BE"} // Value: ־
Python:
char = '\u05BE'
print(char) # Output: ־
Perl:
my $char = "\x{05BE}";
print $char; # Output: ־
PHP:
$char = "\x{05BE}";
echo $char; // Output: ־
Ruby:
char = "\u{05BE}"
puts char # Output: ־
Rust:
let c = '\u{5BE}';
println!("{}", c); // Output: ־
Go:
char := '\u05BE'
fmt.Printf("%c\n", char) // Output: ־
CSS:
/* CSS content property */
.element::before {
content: "\0005BE"; /* 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=%D6%BE
MD5:
7b5d25a99f0bf05679ab371814e003b9
SHA1:
a6f20fdc9ddc47379a09bbd5df4844b7f153521f
Base64:
1r4=