C:
char c = '\u6713';
printf("%c\n", c); // Output: 朓
JavaScript:
const char = '\u6713';
console.log(char); // Output: 朓
Java:
char c = '\u6713';
System.out.println(c); // Output: 朓
JSON:
{"text": "\u6713"} // Value: 朓
Python:
char = '\u6713'
print(char) # Output: 朓
Perl:
my $char = "\x{6713}";
print $char; # Output: 朓
PHP:
$char = "\x{6713}";
echo $char; // Output: 朓
Ruby:
char = "\u{6713}"
puts char # Output: 朓
Rust:
let c = '\u{6713}';
println!("{}", c); // Output: 朓
Go:
char := '\u6713'
fmt.Printf("%c\n", char) // Output: 朓
CSS:
/* CSS content property */
.element::before {
content: "\006713"; /* 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=%E6%9C%93
MD5:
2d4562fa7ba49de1bd08c01072e0a73e
SHA1:
4bf81dd6586918283b3bf0c074ad21938ba3f09c
Base64:
5pyT