C:
char c = '\u1945';
printf("%c\n", c); // Output: ᥅
JavaScript:
const char = '\u1945';
console.log(char); // Output: ᥅
Java:
char c = '\u1945';
System.out.println(c); // Output: ᥅
JSON:
{"text": "\u1945"} // Value: ᥅
Python:
char = '\u1945'
print(char) # Output: ᥅
Perl:
my $char = "\x{1945}";
print $char; # Output: ᥅
PHP:
$char = "\x{1945}";
echo $char; // Output: ᥅
Ruby:
char = "\u{1945}"
puts char # Output: ᥅
Rust:
let c = '\u{1945}';
println!("{}", c); // Output: ᥅
Go:
char := '\u1945'
fmt.Printf("%c\n", char) // Output: ᥅
CSS:
/* CSS content property */
.element::before {
content: "\001945"; /* 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%85
MD5:
632075a570d1b3f7384376971ab16545
SHA1:
624c7bc7f7c39ee0652bd090521f71e96f3aaa87
Base64:
4aWF