C:
char c = '\u1196';
printf("%c\n", c); // Output: ᆖ
JavaScript:
const char = '\u1196';
console.log(char); // Output: ᆖ
Java:
char c = '\u1196';
System.out.println(c); // Output: ᆖ
JSON:
{"text": "\u1196"} // Value: ᆖ
Python:
char = '\u1196'
print(char) # Output: ᆖ
Perl:
my $char = "\x{1196}";
print $char; # Output: ᆖ
PHP:
$char = "\x{1196}";
echo $char; // Output: ᆖ
Ruby:
char = "\u{1196}"
puts char # Output: ᆖ
Rust:
let c = '\u{1196}';
println!("{}", c); // Output: ᆖ
Go:
char := '\u1196'
fmt.Printf("%c\n", char) // Output: ᆖ
CSS:
/* CSS content property */
.element::before {
content: "\001196"; /* 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%86%96
MD5:
ddcf9828206518cbe73e4fd65c272995
SHA1:
a384bf238a1401af51fabe99076d6cb55a0dc06f
Base64:
4YaW