C:
char c = '\u0DC6';
printf("%c\n", c); // Output: ෆ
JavaScript:
const char = '\u0DC6';
console.log(char); // Output: ෆ
Java:
char c = '\u0DC6';
System.out.println(c); // Output: ෆ
JSON:
{"text": "\u0DC6"} // Value: ෆ
Python:
char = '\u0DC6'
print(char) # Output: ෆ
Perl:
my $char = "\x{0DC6}";
print $char; # Output: ෆ
PHP:
$char = "\x{0DC6}";
echo $char; // Output: ෆ
Ruby:
char = "\u{0DC6}"
puts char # Output: ෆ
Rust:
let c = '\u{DC6}';
println!("{}", c); // Output: ෆ
Go:
char := '\u0DC6'
fmt.Printf("%c\n", char) // Output: ෆ
CSS:
/* CSS content property */
.element::before {
content: "\000DC6"; /* 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=%E0%B7%86
MD5:
b5e0024ceaed13cb3d128c3f82fc5722
SHA1:
147b1f817921da75437ad433714277bc5c8ea0e7
Base64:
4LeG