C:
char c = '\u1958';
printf("%c\n", c); // Output: ᥘ
JavaScript:
const char = '\u1958';
console.log(char); // Output: ᥘ
Java:
char c = '\u1958';
System.out.println(c); // Output: ᥘ
JSON:
{"text": "\u1958"} // Value: ᥘ
Python:
char = '\u1958'
print(char) # Output: ᥘ
Perl:
my $char = "\x{1958}";
print $char; # Output: ᥘ
PHP:
$char = "\x{1958}";
echo $char; // Output: ᥘ
Ruby:
char = "\u{1958}"
puts char # Output: ᥘ
Rust:
let c = '\u{1958}';
println!("{}", c); // Output: ᥘ
Go:
char := '\u1958'
fmt.Printf("%c\n", char) // Output: ᥘ
CSS:
/* CSS content property */
.element::before {
content: "\001958"; /* 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%98
MD5:
525da478a083282a9d23c0bf4386831e
SHA1:
d8eef610373409c4630a6d4c0e9848a935e756c1
Base64:
4aWY