C:
char c = '\u9680';
printf("%c\n", c); // Output: 隀
JavaScript:
const char = '\u9680';
console.log(char); // Output: 隀
Java:
char c = '\u9680';
System.out.println(c); // Output: 隀
JSON:
{"text": "\u9680"} // Value: 隀
Python:
char = '\u9680'
print(char) # Output: 隀
Perl:
my $char = "\x{9680}";
print $char; # Output: 隀
PHP:
$char = "\x{9680}";
echo $char; // Output: 隀
Ruby:
char = "\u{9680}"
puts char # Output: 隀
Rust:
let c = '\u{9680}';
println!("{}", c); // Output: 隀
Go:
char := '\u9680'
fmt.Printf("%c\n", char) // Output: 隀
CSS:
/* CSS content property */
.element::before {
content: "\009680"; /* 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%80
MD5:
95ba16b0d5fb89078a0a93030a70eb56
SHA1:
e52e852a56be554fddb660579845fcdd75a6fa7f
Base64:
6ZqA