C:
char c = '\u1460';
printf("%c\n", c); // Output: ᑠ
JavaScript:
const char = '\u1460';
console.log(char); // Output: ᑠ
Java:
char c = '\u1460';
System.out.println(c); // Output: ᑠ
JSON:
{"text": "\u1460"} // Value: ᑠ
Python:
char = '\u1460'
print(char) # Output: ᑠ
Perl:
my $char = "\x{1460}";
print $char; # Output: ᑠ
PHP:
$char = "\x{1460}";
echo $char; // Output: ᑠ
Ruby:
char = "\u{1460}"
puts char # Output: ᑠ
Rust:
let c = '\u{1460}';
println!("{}", c); // Output: ᑠ
Go:
char := '\u1460'
fmt.Printf("%c\n", char) // Output: ᑠ
CSS:
/* CSS content property */
.element::before {
content: "\001460"; /* 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%A0
MD5:
63c111169db35fb8e2ad9f2a36454646
SHA1:
a6e131de304147b5aad262190cf7ede87a58a558
Base64:
4ZGg