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