C:
char c = '\u06BA';
printf("%c\n", c); // Output: ں
JavaScript:
const char = '\u06BA';
console.log(char); // Output: ں
Java:
char c = '\u06BA';
System.out.println(c); // Output: ں
JSON:
{"text": "\u06BA"} // Value: ں
Python:
char = '\u06BA'
print(char) # Output: ں
Perl:
my $char = "\x{06BA}";
print $char; # Output: ں
PHP:
$char = "\x{06BA}";
echo $char; // Output: ں
Ruby:
char = "\u{06BA}"
puts char # Output: ں
Rust:
let c = '\u{6BA}';
println!("{}", c); // Output: ں
Go:
char := '\u06BA'
fmt.Printf("%c\n", char) // Output: ں
CSS:
/* CSS content property */
.element::before {
content: "\0006BA"; /* 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=%DA%BA
MD5:
c89995bdbf5346a259c5f901d788b632
SHA1:
47390f203203a910c9ff7c1c2aace03c812b0b70
Base64:
2ro=