C:
char c = '\u9770';
printf("%c\n", c); // Output: 靰
JavaScript:
const char = '\u9770';
console.log(char); // Output: 靰
Java:
char c = '\u9770';
System.out.println(c); // Output: 靰
JSON:
{"text": "\u9770"} // Value: 靰
Python:
char = '\u9770'
print(char) # Output: 靰
Perl:
my $char = "\x{9770}";
print $char; # Output: 靰
PHP:
$char = "\x{9770}";
echo $char; // Output: 靰
Ruby:
char = "\u{9770}"
puts char # Output: 靰
Rust:
let c = '\u{9770}';
println!("{}", c); // Output: 靰
Go:
char := '\u9770'
fmt.Printf("%c\n", char) // Output: 靰
CSS:
/* CSS content property */
.element::before {
content: "\009770"; /* 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%9D%B0
MD5:
45e96f69d628cfba8c92d546658aeb7e
SHA1:
c080e8ecf274f18439ad2172684c10c5c66c77f3
Base64:
6Z2w