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