C:
char c = '\u8115';
printf("%c\n", c); // Output: 脕
JavaScript:
const char = '\u8115';
console.log(char); // Output: 脕
Java:
char c = '\u8115';
System.out.println(c); // Output: 脕
JSON:
{"text": "\u8115"} // Value: 脕
Python:
char = '\u8115'
print(char) # Output: 脕
Perl:
my $char = "\x{8115}";
print $char; # Output: 脕
PHP:
$char = "\x{8115}";
echo $char; // Output: 脕
Ruby:
char = "\u{8115}"
puts char # Output: 脕
Rust:
let c = '\u{8115}';
println!("{}", c); // Output: 脕
Go:
char := '\u8115'
fmt.Printf("%c\n", char) // Output: 脕
CSS:
/* CSS content property */
.element::before {
content: "\008115"; /* 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%95
MD5:
c8ce22aa486e4bf4b55689558b130591
SHA1:
1e140d00a432ab7534acfbd7e40f2605ce784cc9
Base64:
6ISV