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