C:
char c = '\u10E3';
printf("%c\n", c); // Output: უ
JavaScript:
const char = '\u10E3';
console.log(char); // Output: უ
Java:
char c = '\u10E3';
System.out.println(c); // Output: უ
JSON:
{"text": "\u10E3"} // Value: უ
Python:
char = '\u10E3'
print(char) # Output: უ
Perl:
my $char = "\x{10E3}";
print $char; # Output: უ
PHP:
$char = "\x{10E3}";
echo $char; // Output: უ
Ruby:
char = "\u{10E3}"
puts char # Output: უ
Rust:
let c = '\u{10E3}';
println!("{}", c); // Output: უ
Go:
char := '\u10E3'
fmt.Printf("%c\n", char) // Output: უ
CSS:
/* CSS content property */
.element::before {
content: "\0010E3"; /* 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%A3
MD5:
8d4dca6a0b666bfa57090ef663c1d62c
SHA1:
746d72eea2ef53abe8bf2c88a5e4f8869f5b09d7
Base64:
4YOj