C:
char c = '\u0FAD';
printf("%c\n", c); // Output: ྭ
JavaScript:
const char = '\u0FAD';
console.log(char); // Output: ྭ
Java:
char c = '\u0FAD';
System.out.println(c); // Output: ྭ
JSON:
{"text": "\u0FAD"} // Value: ྭ
Python:
char = '\u0FAD'
print(char) # Output: ྭ
Perl:
my $char = "\x{0FAD}";
print $char; # Output: ྭ
PHP:
$char = "\x{0FAD}";
echo $char; // Output: ྭ
Ruby:
char = "\u{0FAD}"
puts char # Output: ྭ
Rust:
let c = '\u{FAD}';
println!("{}", c); // Output: ྭ
Go:
char := '\u0FAD'
fmt.Printf("%c\n", char) // Output: ྭ
CSS:
/* CSS content property */
.element::before {
content: "\000FAD"; /* 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=%E0%BE%AD
MD5:
91afd3ecbfee69b252fa2474761f2127
SHA1:
1518dff6efe99eac56cf644d81c8fac650e13df2
Base64:
4L6t