C:
char c = '\u8C27';
printf("%c\n", c); // Output: 谧
JavaScript:
const char = '\u8C27';
console.log(char); // Output: 谧
Java:
char c = '\u8C27';
System.out.println(c); // Output: 谧
JSON:
{"text": "\u8C27"} // Value: 谧
Python:
char = '\u8C27'
print(char) # Output: 谧
Perl:
my $char = "\x{8C27}";
print $char; # Output: 谧
PHP:
$char = "\x{8C27}";
echo $char; // Output: 谧
Ruby:
char = "\u{8C27}"
puts char # Output: 谧
Rust:
let c = '\u{8C27}';
println!("{}", c); // Output: 谧
Go:
char := '\u8C27'
fmt.Printf("%c\n", char) // Output: 谧
CSS:
/* CSS content property */
.element::before {
content: "\008C27"; /* 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=%E8%B0%A7
MD5:
8d7b291a29b6ae697221c938e6ea7f5a
SHA1:
50c8d4be396010e61d6e92656bffe167f59415f3
Base64:
6LCn