C:
char c = '\u9688';
printf("%c\n", c); // Output: 隈
JavaScript:
const char = '\u9688';
console.log(char); // Output: 隈
Java:
char c = '\u9688';
System.out.println(c); // Output: 隈
JSON:
{"text": "\u9688"} // Value: 隈
Python:
char = '\u9688'
print(char) # Output: 隈
Perl:
my $char = "\x{9688}";
print $char; # Output: 隈
PHP:
$char = "\x{9688}";
echo $char; // Output: 隈
Ruby:
char = "\u{9688}"
puts char # Output: 隈
Rust:
let c = '\u{9688}';
println!("{}", c); // Output: 隈
Go:
char := '\u9688'
fmt.Printf("%c\n", char) // Output: 隈
CSS:
/* CSS content property */
.element::before {
content: "\009688"; /* 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=%E9%9A%88
MD5:
772bc15bfc0d4d58c47c0fa0c1d2aeb5
SHA1:
20a9bc79e55f7807d050c54b24f52fd002378122
Base64:
6ZqI