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