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