C:
char c = '\u8124';
printf("%c\n", c); // Output: 脤
JavaScript:
const char = '\u8124';
console.log(char); // Output: 脤
Java:
char c = '\u8124';
System.out.println(c); // Output: 脤
JSON:
{"text": "\u8124"} // Value: 脤
Python:
char = '\u8124'
print(char) # Output: 脤
Perl:
my $char = "\x{8124}";
print $char; # Output: 脤
PHP:
$char = "\x{8124}";
echo $char; // Output: 脤
Ruby:
char = "\u{8124}"
puts char # Output: 脤
Rust:
let c = '\u{8124}';
println!("{}", c); // Output: 脤
Go:
char := '\u8124'
fmt.Printf("%c\n", char) // Output: 脤
CSS:
/* CSS content property */
.element::before {
content: "\008124"; /* 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%A4
MD5:
56f77780fa5d43c0d73706772dddd66f
SHA1:
f3540e37dbb791b664e386979443a7b0bd1b5499
Base64:
6ISk