C:
char c = '\u0CAB';
printf("%c\n", c); // Output: ಫ
JavaScript:
const char = '\u0CAB';
console.log(char); // Output: ಫ
Java:
char c = '\u0CAB';
System.out.println(c); // Output: ಫ
JSON:
{"text": "\u0CAB"} // Value: ಫ
Python:
char = '\u0CAB'
print(char) # Output: ಫ
Perl:
my $char = "\x{0CAB}";
print $char; # Output: ಫ
PHP:
$char = "\x{0CAB}";
echo $char; // Output: ಫ
Ruby:
char = "\u{0CAB}"
puts char # Output: ಫ
Rust:
let c = '\u{CAB}';
println!("{}", c); // Output: ಫ
Go:
char := '\u0CAB'
fmt.Printf("%c\n", char) // Output: ಫ
CSS:
/* CSS content property */
.element::before {
content: "\000CAB"; /* 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%B2%AB
MD5:
c19fee60681579641270174fc9ccd373
SHA1:
5583027d9c1ca3a0471ef3189dc391ddff588c52
Base64:
4LKr