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