C:
char c = '\u5661';
printf("%c\n", c); // Output: 噡
JavaScript:
const char = '\u5661';
console.log(char); // Output: 噡
Java:
char c = '\u5661';
System.out.println(c); // Output: 噡
JSON:
{"text": "\u5661"} // Value: 噡
Python:
char = '\u5661'
print(char) # Output: 噡
Perl:
my $char = "\x{5661}";
print $char; # Output: 噡
PHP:
$char = "\x{5661}";
echo $char; // Output: 噡
Ruby:
char = "\u{5661}"
puts char # Output: 噡
Rust:
let c = '\u{5661}';
println!("{}", c); // Output: 噡
Go:
char := '\u5661'
fmt.Printf("%c\n", char) // Output: 噡
CSS:
/* CSS content property */
.element::before {
content: "\005661"; /* 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=%E5%99%A1
MD5:
aef0f07ce1eed8ee1077c2a5ef464786
SHA1:
a581af943ceb0586ffccf993ba5a247d46d8094f
Base64:
5Zmh