C:
char c = '\u6773';
printf("%c\n", c); // Output: 杳
JavaScript:
const char = '\u6773';
console.log(char); // Output: 杳
Java:
char c = '\u6773';
System.out.println(c); // Output: 杳
JSON:
{"text": "\u6773"} // Value: 杳
Python:
char = '\u6773'
print(char) # Output: 杳
Perl:
my $char = "\x{6773}";
print $char; # Output: 杳
PHP:
$char = "\x{6773}";
echo $char; // Output: 杳
Ruby:
char = "\u{6773}"
puts char # Output: 杳
Rust:
let c = '\u{6773}';
println!("{}", c); // Output: 杳
Go:
char := '\u6773'
fmt.Printf("%c\n", char) // Output: 杳
CSS:
/* CSS content property */
.element::before {
content: "\006773"; /* 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%9D%B3
MD5:
1c8a753adbe7978a5f4e485ad6c0e84a
SHA1:
ae706a3133366a8e170511897913ab1f7bdec69c
Base64:
5p2z