C:
char c = '\u1184';
printf("%c\n", c); // Output: ᆄ
JavaScript:
const char = '\u1184';
console.log(char); // Output: ᆄ
Java:
char c = '\u1184';
System.out.println(c); // Output: ᆄ
JSON:
{"text": "\u1184"} // Value: ᆄ
Python:
char = '\u1184'
print(char) # Output: ᆄ
Perl:
my $char = "\x{1184}";
print $char; # Output: ᆄ
PHP:
$char = "\x{1184}";
echo $char; // Output: ᆄ
Ruby:
char = "\u{1184}"
puts char # Output: ᆄ
Rust:
let c = '\u{1184}';
println!("{}", c); // Output: ᆄ
Go:
char := '\u1184'
fmt.Printf("%c\n", char) // Output: ᆄ
CSS:
/* CSS content property */
.element::before {
content: "\001184"; /* 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%84
MD5:
3622cb805cbea4d88923c4ddf62fe918
SHA1:
06d074c70008fa13250ad832af1dbcc5d00f053f
Base64:
4YaE