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