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