C:
char c = '\u5DAD';
printf("%c\n", c); // Output: 嶭
JavaScript:
const char = '\u5DAD';
console.log(char); // Output: 嶭
Java:
char c = '\u5DAD';
System.out.println(c); // Output: 嶭
JSON:
{"text": "\u5DAD"} // Value: 嶭
Python:
char = '\u5DAD'
print(char) # Output: 嶭
Perl:
my $char = "\x{5DAD}";
print $char; # Output: 嶭
PHP:
$char = "\x{5DAD}";
echo $char; // Output: 嶭
Ruby:
char = "\u{5DAD}"
puts char # Output: 嶭
Rust:
let c = '\u{5DAD}';
println!("{}", c); // Output: 嶭
Go:
char := '\u5DAD'
fmt.Printf("%c\n", char) // Output: 嶭
CSS:
/* CSS content property */
.element::before {
content: "\005DAD"; /* 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%B6%AD
MD5:
897d4dcfe8d61b33b8388c39086f83c5
SHA1:
d05261452c0e37635a2fbab9006171536481e503
Base64:
5bat