C:
char c = '\u5791';
printf("%c\n", c); // Output: 垑
JavaScript:
const char = '\u5791';
console.log(char); // Output: 垑
Java:
char c = '\u5791';
System.out.println(c); // Output: 垑
JSON:
{"text": "\u5791"} // Value: 垑
Python:
char = '\u5791'
print(char) # Output: 垑
Perl:
my $char = "\x{5791}";
print $char; # Output: 垑
PHP:
$char = "\x{5791}";
echo $char; // Output: 垑
Ruby:
char = "\u{5791}"
puts char # Output: 垑
Rust:
let c = '\u{5791}';
println!("{}", c); // Output: 垑
Go:
char := '\u5791'
fmt.Printf("%c\n", char) // Output: 垑
CSS:
/* CSS content property */
.element::before {
content: "\005791"; /* 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%9E%91
MD5:
dc761878a018db3e07422e01b5d72ff2
SHA1:
74c557b6fb463c2dd15adebf50ee5848a305063b
Base64:
5Z6R