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