C:
char c = '\u8796';
printf("%c\n", c); // Output: 螖
JavaScript:
const char = '\u8796';
console.log(char); // Output: 螖
Java:
char c = '\u8796';
System.out.println(c); // Output: 螖
JSON:
{"text": "\u8796"} // Value: 螖
Python:
char = '\u8796'
print(char) # Output: 螖
Perl:
my $char = "\x{8796}";
print $char; # Output: 螖
PHP:
$char = "\x{8796}";
echo $char; // Output: 螖
Ruby:
char = "\u{8796}"
puts char # Output: 螖
Rust:
let c = '\u{8796}';
println!("{}", c); // Output: 螖
Go:
char := '\u8796'
fmt.Printf("%c\n", char) // Output: 螖
CSS:
/* CSS content property */
.element::before {
content: "\008796"; /* 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%96
MD5:
3900e746999b2e69d8694d40768e0711
SHA1:
e8fa1b574d125c930122e0391b69db82bdd4048b
Base64:
6J6W