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