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