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