C:
char c = '\u57AD';
printf("%c\n", c); // Output: 垭
JavaScript:
const char = '\u57AD';
console.log(char); // Output: 垭
Java:
char c = '\u57AD';
System.out.println(c); // Output: 垭
JSON:
{"text": "\u57AD"} // Value: 垭
Python:
char = '\u57AD'
print(char) # Output: 垭
Perl:
my $char = "\x{57AD}";
print $char; # Output: 垭
PHP:
$char = "\x{57AD}";
echo $char; // Output: 垭
Ruby:
char = "\u{57AD}"
puts char # Output: 垭
Rust:
let c = '\u{57AD}';
println!("{}", c); // Output: 垭
Go:
char := '\u57AD'
fmt.Printf("%c\n", char) // Output: 垭
CSS:
/* CSS content property */
.element::before {
content: "\0057AD"; /* 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%AD
MD5:
0688bda54107da0efd39f7be3711bf53
SHA1:
670b92c9d3c7842374e58442cf20c18c771aea70
Base64:
5Z6t