C:
char c = '\u7E24';
printf("%c\n", c); // Output: 縤
JavaScript:
const char = '\u7E24';
console.log(char); // Output: 縤
Java:
char c = '\u7E24';
System.out.println(c); // Output: 縤
JSON:
{"text": "\u7E24"} // Value: 縤
Python:
char = '\u7E24'
print(char) # Output: 縤
Perl:
my $char = "\x{7E24}";
print $char; # Output: 縤
PHP:
$char = "\x{7E24}";
echo $char; // Output: 縤
Ruby:
char = "\u{7E24}"
puts char # Output: 縤
Rust:
let c = '\u{7E24}';
println!("{}", c); // Output: 縤
Go:
char := '\u7E24'
fmt.Printf("%c\n", char) // Output: 縤
CSS:
/* CSS content property */
.element::before {
content: "\007E24"; /* 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%B8%A4
MD5:
00def45adbaf61c3e8d6245ac82d7910
SHA1:
dc5cc57c3117d756fd1257cec8de23b662b0d117
Base64:
57ik