C:
char c = '\u07F1';
printf("%c\n", c); // Output: ߱
JavaScript:
const char = '\u07F1';
console.log(char); // Output: ߱
Java:
char c = '\u07F1';
System.out.println(c); // Output: ߱
JSON:
{"text": "\u07F1"} // Value: ߱
Python:
char = '\u07F1'
print(char) # Output: ߱
Perl:
my $char = "\x{07F1}";
print $char; # Output: ߱
PHP:
$char = "\x{07F1}";
echo $char; // Output: ߱
Ruby:
char = "\u{07F1}"
puts char # Output: ߱
Rust:
let c = '\u{7F1}';
println!("{}", c); // Output: ߱
Go:
char := '\u07F1'
fmt.Printf("%c\n", char) // Output: ߱
CSS:
/* CSS content property */
.element::before {
content: "\0007F1"; /* 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=%DF%B1
MD5:
59296859fa4476afdf696f6f6b898d09
SHA1:
7e79838ec90b4bfe72c8cf0db329534b1ae4ef46
Base64:
37E=