C:
char c = '\u5420';
printf("%c\n", c); // Output: 吠
JavaScript:
const char = '\u5420';
console.log(char); // Output: 吠
Java:
char c = '\u5420';
System.out.println(c); // Output: 吠
JSON:
{"text": "\u5420"} // Value: 吠
Python:
char = '\u5420'
print(char) # Output: 吠
Perl:
my $char = "\x{5420}";
print $char; # Output: 吠
PHP:
$char = "\x{5420}";
echo $char; // Output: 吠
Ruby:
char = "\u{5420}"
puts char # Output: 吠
Rust:
let c = '\u{5420}';
println!("{}", c); // Output: 吠
Go:
char := '\u5420'
fmt.Printf("%c\n", char) // Output: 吠
CSS:
/* CSS content property */
.element::before {
content: "\005420"; /* 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%90%A0
MD5:
05994e056fc2444318b89088d91b0a70
SHA1:
41aec4d1c4be4bec572fcbd76df8fb30586808c1
Base64:
5ZCg