C:
char c = '\u8127';
printf("%c\n", c); // Output: 脧
JavaScript:
const char = '\u8127';
console.log(char); // Output: 脧
Java:
char c = '\u8127';
System.out.println(c); // Output: 脧
JSON:
{"text": "\u8127"} // Value: 脧
Python:
char = '\u8127'
print(char) # Output: 脧
Perl:
my $char = "\x{8127}";
print $char; # Output: 脧
PHP:
$char = "\x{8127}";
echo $char; // Output: 脧
Ruby:
char = "\u{8127}"
puts char # Output: 脧
Rust:
let c = '\u{8127}';
println!("{}", c); // Output: 脧
Go:
char := '\u8127'
fmt.Printf("%c\n", char) // Output: 脧
CSS:
/* CSS content property */
.element::before {
content: "\008127"; /* 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%A7
MD5:
c274e91b6baae0003144e7e9d5b8e868
SHA1:
31416788e7f2d9589306c69bf5c858939b433d59
Base64:
6ISn