C:
char c = '\u8792';
printf("%c\n", c); // Output: 螒
JavaScript:
const char = '\u8792';
console.log(char); // Output: 螒
Java:
char c = '\u8792';
System.out.println(c); // Output: 螒
JSON:
{"text": "\u8792"} // Value: 螒
Python:
char = '\u8792'
print(char) # Output: 螒
Perl:
my $char = "\x{8792}";
print $char; # Output: 螒
PHP:
$char = "\x{8792}";
echo $char; // Output: 螒
Ruby:
char = "\u{8792}"
puts char # Output: 螒
Rust:
let c = '\u{8792}';
println!("{}", c); // Output: 螒
Go:
char := '\u8792'
fmt.Printf("%c\n", char) // Output: 螒
CSS:
/* CSS content property */
.element::before {
content: "\008792"; /* 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%9E%92
MD5:
6dbff91a75259ba87e77038d98ae364c
SHA1:
41f0a1726ffb60782124adeb42e3f53d37a3c4a0
Base64:
6J6S