C:
char c = '\u7655';
printf("%c\n", c); // Output: 癕
JavaScript:
const char = '\u7655';
console.log(char); // Output: 癕
Java:
char c = '\u7655';
System.out.println(c); // Output: 癕
JSON:
{"text": "\u7655"} // Value: 癕
Python:
char = '\u7655'
print(char) # Output: 癕
Perl:
my $char = "\x{7655}";
print $char; # Output: 癕
PHP:
$char = "\x{7655}";
echo $char; // Output: 癕
Ruby:
char = "\u{7655}"
puts char # Output: 癕
Rust:
let c = '\u{7655}';
println!("{}", c); // Output: 癕
Go:
char := '\u7655'
fmt.Printf("%c\n", char) // Output: 癕
CSS:
/* CSS content property */
.element::before {
content: "\007655"; /* 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%95
MD5:
3fbd8bed5077fdaad242bae94cc15541
SHA1:
87fb4f784f43efb031132d580bcde42319bdd9be
Base64:
55mV