C:
char c = '\u7187';
printf("%c\n", c); // Output: 熇
JavaScript:
const char = '\u7187';
console.log(char); // Output: 熇
Java:
char c = '\u7187';
System.out.println(c); // Output: 熇
JSON:
{"text": "\u7187"} // Value: 熇
Python:
char = '\u7187'
print(char) # Output: 熇
Perl:
my $char = "\x{7187}";
print $char; # Output: 熇
PHP:
$char = "\x{7187}";
echo $char; // Output: 熇
Ruby:
char = "\u{7187}"
puts char # Output: 熇
Rust:
let c = '\u{7187}';
println!("{}", c); // Output: 熇
Go:
char := '\u7187'
fmt.Printf("%c\n", char) // Output: 熇
CSS:
/* CSS content property */
.element::before {
content: "\007187"; /* 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%87
MD5:
c779ba737b32792a74ed809a6ba88282
SHA1:
ca0d65adc102f62b2ce3f017e94e7b8368ef9eee
Base64:
54aH