C:
char c = '\u7731';
printf("%c\n", c); // Output: 眱
JavaScript:
const char = '\u7731';
console.log(char); // Output: 眱
Java:
char c = '\u7731';
System.out.println(c); // Output: 眱
JSON:
{"text": "\u7731"} // Value: 眱
Python:
char = '\u7731'
print(char) # Output: 眱
Perl:
my $char = "\x{7731}";
print $char; # Output: 眱
PHP:
$char = "\x{7731}";
echo $char; // Output: 眱
Ruby:
char = "\u{7731}"
puts char # Output: 眱
Rust:
let c = '\u{7731}';
println!("{}", c); // Output: 眱
Go:
char := '\u7731'
fmt.Printf("%c\n", char) // Output: 眱
CSS:
/* CSS content property */
.element::before {
content: "\007731"; /* 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%9C%B1
MD5:
658874ae6836dc6aa8d64bcbebc62334
SHA1:
fad6dda730ecf500cd909950286d716fdc7025de
Base64:
55yx