C:
char c = '\u1972';
printf("%c\n", c); // Output: ᥲ
JavaScript:
const char = '\u1972';
console.log(char); // Output: ᥲ
Java:
char c = '\u1972';
System.out.println(c); // Output: ᥲ
JSON:
{"text": "\u1972"} // Value: ᥲ
Python:
char = '\u1972'
print(char) # Output: ᥲ
Perl:
my $char = "\x{1972}";
print $char; # Output: ᥲ
PHP:
$char = "\x{1972}";
echo $char; // Output: ᥲ
Ruby:
char = "\u{1972}"
puts char # Output: ᥲ
Rust:
let c = '\u{1972}';
println!("{}", c); // Output: ᥲ
Go:
char := '\u1972'
fmt.Printf("%c\n", char) // Output: ᥲ
CSS:
/* CSS content property */
.element::before {
content: "\001972"; /* 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%B2
MD5:
ec12fcca01d6e41c8d732a3053822ee9
SHA1:
f471f5135fb78a0753fb3a8aefe62112bd812e88
Base64:
4aWy