C:
char c = '\u7186';
printf("%c\n", c); // Output: 熆
JavaScript:
const char = '\u7186';
console.log(char); // Output: 熆
Java:
char c = '\u7186';
System.out.println(c); // Output: 熆
JSON:
{"text": "\u7186"} // Value: 熆
Python:
char = '\u7186'
print(char) # Output: 熆
Perl:
my $char = "\x{7186}";
print $char; # Output: 熆
PHP:
$char = "\x{7186}";
echo $char; // Output: 熆
Ruby:
char = "\u{7186}"
puts char # Output: 熆
Rust:
let c = '\u{7186}';
println!("{}", c); // Output: 熆
Go:
char := '\u7186'
fmt.Printf("%c\n", char) // Output: 熆
CSS:
/* CSS content property */
.element::before {
content: "\007186"; /* 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%86
MD5:
7712fa0917d3232a931d4683040a5fa7
SHA1:
0905fa3997a0eb025b36c056b4df357fe3d1788a
Base64:
54aG