C:
char c = '\u5902';
printf("%c\n", c); // Output: 夂
JavaScript:
const char = '\u5902';
console.log(char); // Output: 夂
Java:
char c = '\u5902';
System.out.println(c); // Output: 夂
JSON:
{"text": "\u5902"} // Value: 夂
Python:
char = '\u5902'
print(char) # Output: 夂
Perl:
my $char = "\x{5902}";
print $char; # Output: 夂
PHP:
$char = "\x{5902}";
echo $char; // Output: 夂
Ruby:
char = "\u{5902}"
puts char # Output: 夂
Rust:
let c = '\u{5902}';
println!("{}", c); // Output: 夂
Go:
char := '\u5902'
fmt.Printf("%c\n", char) // Output: 夂
CSS:
/* CSS content property */
.element::before {
content: "\005902"; /* 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=%E5%A4%82
MD5:
89cd0238d8d71d3dce689a63274cd365
SHA1:
23a827da130a257b92ca028b5973b8d546c6b84a
Base64:
5aSC