C:
char c = '\u5745';
printf("%c\n", c); // Output: 坅
JavaScript:
const char = '\u5745';
console.log(char); // Output: 坅
Java:
char c = '\u5745';
System.out.println(c); // Output: 坅
JSON:
{"text": "\u5745"} // Value: 坅
Python:
char = '\u5745'
print(char) # Output: 坅
Perl:
my $char = "\x{5745}";
print $char; # Output: 坅
PHP:
$char = "\x{5745}";
echo $char; // Output: 坅
Ruby:
char = "\u{5745}"
puts char # Output: 坅
Rust:
let c = '\u{5745}';
println!("{}", c); // Output: 坅
Go:
char := '\u5745'
fmt.Printf("%c\n", char) // Output: 坅
CSS:
/* CSS content property */
.element::before {
content: "\005745"; /* 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%9D%85
MD5:
2ccbc05c2f66589bfa53393d4d90f99c
SHA1:
6d3a0972ef89470fa50c530d8e07e57bffd4d49c
Base64:
5Z2F