C:
char c = '\u7FB3';
printf("%c\n", c); // Output: 羳
JavaScript:
const char = '\u7FB3';
console.log(char); // Output: 羳
Java:
char c = '\u7FB3';
System.out.println(c); // Output: 羳
JSON:
{"text": "\u7FB3"} // Value: 羳
Python:
char = '\u7FB3'
print(char) # Output: 羳
Perl:
my $char = "\x{7FB3}";
print $char; # Output: 羳
PHP:
$char = "\x{7FB3}";
echo $char; // Output: 羳
Ruby:
char = "\u{7FB3}"
puts char # Output: 羳
Rust:
let c = '\u{7FB3}';
println!("{}", c); // Output: 羳
Go:
char := '\u7FB3'
fmt.Printf("%c\n", char) // Output: 羳
CSS:
/* CSS content property */
.element::before {
content: "\007FB3"; /* 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%BE%B3
MD5:
6a9bd8555d0f9cf32c472348d44f1d50
SHA1:
a8391755c6340334d1e6db381bcd81afcb6b000c
Base64:
576z