C:
char c = '\u8103';
printf("%c\n", c); // Output: 脃
JavaScript:
const char = '\u8103';
console.log(char); // Output: 脃
Java:
char c = '\u8103';
System.out.println(c); // Output: 脃
JSON:
{"text": "\u8103"} // Value: 脃
Python:
char = '\u8103'
print(char) # Output: 脃
Perl:
my $char = "\x{8103}";
print $char; # Output: 脃
PHP:
$char = "\x{8103}";
echo $char; // Output: 脃
Ruby:
char = "\u{8103}"
puts char # Output: 脃
Rust:
let c = '\u{8103}';
println!("{}", c); // Output: 脃
Go:
char := '\u8103'
fmt.Printf("%c\n", char) // Output: 脃
CSS:
/* CSS content property */
.element::before {
content: "\008103"; /* 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%83
MD5:
50f6eb13d13f67364a626d177ac3ff08
SHA1:
ee2f572575354283cbc9a9a9c5e66944d34fe423
Base64:
6ISD