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