C:
char c = '\u1959';
printf("%c\n", c); // Output: ᥙ
JavaScript:
const char = '\u1959';
console.log(char); // Output: ᥙ
Java:
char c = '\u1959';
System.out.println(c); // Output: ᥙ
JSON:
{"text": "\u1959"} // Value: ᥙ
Python:
char = '\u1959'
print(char) # Output: ᥙ
Perl:
my $char = "\x{1959}";
print $char; # Output: ᥙ
PHP:
$char = "\x{1959}";
echo $char; // Output: ᥙ
Ruby:
char = "\u{1959}"
puts char # Output: ᥙ
Rust:
let c = '\u{1959}';
println!("{}", c); // Output: ᥙ
Go:
char := '\u1959'
fmt.Printf("%c\n", char) // Output: ᥙ
CSS:
/* CSS content property */
.element::before {
content: "\001959"; /* 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%A5%99
MD5:
e213e7130ee45f8461957a9dabf6bee8
SHA1:
df9b3c880c84782ea7b4722a0abdfee321a12ba4
Base64:
4aWZ