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