C:
char c = '\u7AB3';
printf("%c\n", c); // Output: 窳
JavaScript:
const char = '\u7AB3';
console.log(char); // Output: 窳
Java:
char c = '\u7AB3';
System.out.println(c); // Output: 窳
JSON:
{"text": "\u7AB3"} // Value: 窳
Python:
char = '\u7AB3'
print(char) # Output: 窳
Perl:
my $char = "\x{7AB3}";
print $char; # Output: 窳
PHP:
$char = "\x{7AB3}";
echo $char; // Output: 窳
Ruby:
char = "\u{7AB3}"
puts char # Output: 窳
Rust:
let c = '\u{7AB3}';
println!("{}", c); // Output: 窳
Go:
char := '\u7AB3'
fmt.Printf("%c\n", char) // Output: 窳
CSS:
/* CSS content property */
.element::before {
content: "\007AB3"; /* 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%AA%B3
MD5:
5f5a93d13657d555ea1f37d834cfb776
SHA1:
97e41e980de8c07e8063a9e393cf6705819c2cc7
Base64:
56qz