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