C:
char c = '\u7198';
printf("%c\n", c); // Output: 熘
JavaScript:
const char = '\u7198';
console.log(char); // Output: 熘
Java:
char c = '\u7198';
System.out.println(c); // Output: 熘
JSON:
{"text": "\u7198"} // Value: 熘
Python:
char = '\u7198'
print(char) # Output: 熘
Perl:
my $char = "\x{7198}";
print $char; # Output: 熘
PHP:
$char = "\x{7198}";
echo $char; // Output: 熘
Ruby:
char = "\u{7198}"
puts char # Output: 熘
Rust:
let c = '\u{7198}';
println!("{}", c); // Output: 熘
Go:
char := '\u7198'
fmt.Printf("%c\n", char) // Output: 熘
CSS:
/* CSS content property */
.element::before {
content: "\007198"; /* 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%86%98
MD5:
00af010a01292d3c9a9cb42e5b7d7fdd
SHA1:
f742d778c7061f2aa1d4b1002d0ae520ad2c9944
Base64:
54aY