C:
char c = '\u10EA';
printf("%c\n", c); // Output: ც
JavaScript:
const char = '\u10EA';
console.log(char); // Output: ც
Java:
char c = '\u10EA';
System.out.println(c); // Output: ც
JSON:
{"text": "\u10EA"} // Value: ც
Python:
char = '\u10EA'
print(char) # Output: ც
Perl:
my $char = "\x{10EA}";
print $char; # Output: ც
PHP:
$char = "\x{10EA}";
echo $char; // Output: ც
Ruby:
char = "\u{10EA}"
puts char # Output: ც
Rust:
let c = '\u{10EA}';
println!("{}", c); // Output: ც
Go:
char := '\u10EA'
fmt.Printf("%c\n", char) // Output: ც
CSS:
/* CSS content property */
.element::before {
content: "\0010EA"; /* 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=%E1%83%AA
MD5:
6e57a36dfa0d2faa32d5be1d1e5dd2f1
SHA1:
89b91cd8a8d6f583b3eec3ced185cb931cc17445
Base64:
4YOq