C:
char c = '\u766D';
printf("%c\n", c); // Output: 癭
JavaScript:
const char = '\u766D';
console.log(char); // Output: 癭
Java:
char c = '\u766D';
System.out.println(c); // Output: 癭
JSON:
{"text": "\u766D"} // Value: 癭
Python:
char = '\u766D'
print(char) # Output: 癭
Perl:
my $char = "\x{766D}";
print $char; # Output: 癭
PHP:
$char = "\x{766D}";
echo $char; // Output: 癭
Ruby:
char = "\u{766D}"
puts char # Output: 癭
Rust:
let c = '\u{766D}';
println!("{}", c); // Output: 癭
Go:
char := '\u766D'
fmt.Printf("%c\n", char) // Output: 癭
CSS:
/* CSS content property */
.element::before {
content: "\00766D"; /* 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=%E7%99%AD
MD5:
9f33ea3b95005061af45ffe3b0899044
SHA1:
72394d8077b6676fc4a2c57cff9cd5e3ee468cdb
Base64:
55mt