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