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