C:
char c = '\u8107';
printf("%c\n", c); // Output: 脇
JavaScript:
const char = '\u8107';
console.log(char); // Output: 脇
Java:
char c = '\u8107';
System.out.println(c); // Output: 脇
JSON:
{"text": "\u8107"} // Value: 脇
Python:
char = '\u8107'
print(char) # Output: 脇
Perl:
my $char = "\x{8107}";
print $char; # Output: 脇
PHP:
$char = "\x{8107}";
echo $char; // Output: 脇
Ruby:
char = "\u{8107}"
puts char # Output: 脇
Rust:
let c = '\u{8107}';
println!("{}", c); // Output: 脇
Go:
char := '\u8107'
fmt.Printf("%c\n", char) // Output: 脇
CSS:
/* CSS content property */
.element::before {
content: "\008107"; /* 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%87
MD5:
26797414787e8703709bd504cf0ca05a
SHA1:
d885a6a3e5bd906e5ed327ad42a1628d9050785d
Base64:
6ISH