C:
char c = '\u737D';
printf("%c\n", c); // Output: 獽
JavaScript:
const char = '\u737D';
console.log(char); // Output: 獽
Java:
char c = '\u737D';
System.out.println(c); // Output: 獽
JSON:
{"text": "\u737D"} // Value: 獽
Python:
char = '\u737D'
print(char) # Output: 獽
Perl:
my $char = "\x{737D}";
print $char; # Output: 獽
PHP:
$char = "\x{737D}";
echo $char; // Output: 獽
Ruby:
char = "\u{737D}"
puts char # Output: 獽
Rust:
let c = '\u{737D}';
println!("{}", c); // Output: 獽
Go:
char := '\u737D'
fmt.Printf("%c\n", char) // Output: 獽
CSS:
/* CSS content property */
.element::before {
content: "\00737D"; /* 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%8D%BD
MD5:
714d0e854e98aa65624310eeb6f0a21e
SHA1:
25590d4efa866d6f660e1405cbefa13b366008fc
Base64:
5429