C:
char c = '\u8111';
printf("%c\n", c); // Output: 脑
JavaScript:
const char = '\u8111';
console.log(char); // Output: 脑
Java:
char c = '\u8111';
System.out.println(c); // Output: 脑
JSON:
{"text": "\u8111"} // Value: 脑
Python:
char = '\u8111'
print(char) # Output: 脑
Perl:
my $char = "\x{8111}";
print $char; # Output: 脑
PHP:
$char = "\x{8111}";
echo $char; // Output: 脑
Ruby:
char = "\u{8111}"
puts char # Output: 脑
Rust:
let c = '\u{8111}';
println!("{}", c); // Output: 脑
Go:
char := '\u8111'
fmt.Printf("%c\n", char) // Output: 脑
CSS:
/* CSS content property */
.element::before {
content: "\008111"; /* 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%84%91
MD5:
511d25c0e96d0df62ae1af36258395d5
SHA1:
99fc575d7c945f07023a95217af339f79eb00ad7
Base64:
6ISR