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