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