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