C:
char c = '\u5660';
printf("%c\n", c); // Output: 噠
JavaScript:
const char = '\u5660';
console.log(char); // Output: 噠
Java:
char c = '\u5660';
System.out.println(c); // Output: 噠
JSON:
{"text": "\u5660"} // Value: 噠
Python:
char = '\u5660'
print(char) # Output: 噠
Perl:
my $char = "\x{5660}";
print $char; # Output: 噠
PHP:
$char = "\x{5660}";
echo $char; // Output: 噠
Ruby:
char = "\u{5660}"
puts char # Output: 噠
Rust:
let c = '\u{5660}';
println!("{}", c); // Output: 噠
Go:
char := '\u5660'
fmt.Printf("%c\n", char) // Output: 噠
CSS:
/* CSS content property */
.element::before {
content: "\005660"; /* 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%A0
MD5:
a2d3376ee3c08a9c8c5bfadcbd6c90ef
SHA1:
9a7e7e47c145b5187fe60d31d9d86c9079823413
Base64:
5Zmg