C:
char c = '\u0F27';
printf("%c\n", c); // Output: ༧
JavaScript:
const char = '\u0F27';
console.log(char); // Output: ༧
Java:
char c = '\u0F27';
System.out.println(c); // Output: ༧
JSON:
{"text": "\u0F27"} // Value: ༧
Python:
char = '\u0F27'
print(char) # Output: ༧
Perl:
my $char = "\x{0F27}";
print $char; # Output: ༧
PHP:
$char = "\x{0F27}";
echo $char; // Output: ༧
Ruby:
char = "\u{0F27}"
puts char # Output: ༧
Rust:
let c = '\u{F27}';
println!("{}", c); // Output: ༧
Go:
char := '\u0F27'
fmt.Printf("%c\n", char) // Output: ༧
CSS:
/* CSS content property */
.element::before {
content: "\000F27"; /* 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%BC%A7
MD5:
f13387858d2de45a24dba0599587cd43
SHA1:
d9f8c42cb16c7d7c92454b7c325be672a3380758
Base64:
4Lyn