C:
char c = '\u1953';
printf("%c\n", c); // Output: ᥓ
JavaScript:
const char = '\u1953';
console.log(char); // Output: ᥓ
Java:
char c = '\u1953';
System.out.println(c); // Output: ᥓ
JSON:
{"text": "\u1953"} // Value: ᥓ
Python:
char = '\u1953'
print(char) # Output: ᥓ
Perl:
my $char = "\x{1953}";
print $char; # Output: ᥓ
PHP:
$char = "\x{1953}";
echo $char; // Output: ᥓ
Ruby:
char = "\u{1953}"
puts char # Output: ᥓ
Rust:
let c = '\u{1953}';
println!("{}", c); // Output: ᥓ
Go:
char := '\u1953'
fmt.Printf("%c\n", char) // Output: ᥓ
CSS:
/* CSS content property */
.element::before {
content: "\001953"; /* 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%93
MD5:
74ac41b4de2f7995f8ba1ea6a329f674
SHA1:
00dc3f6acf8ad0002fc89bc5e14881a878f09f4b
Base64:
4aWT