C:
char c = '\u6768';
printf("%c\n", c); // Output: 杨
JavaScript:
const char = '\u6768';
console.log(char); // Output: 杨
Java:
char c = '\u6768';
System.out.println(c); // Output: 杨
JSON:
{"text": "\u6768"} // Value: 杨
Python:
char = '\u6768'
print(char) # Output: 杨
Perl:
my $char = "\x{6768}";
print $char; # Output: 杨
PHP:
$char = "\x{6768}";
echo $char; // Output: 杨
Ruby:
char = "\u{6768}"
puts char # Output: 杨
Rust:
let c = '\u{6768}';
println!("{}", c); // Output: 杨
Go:
char := '\u6768'
fmt.Printf("%c\n", char) // Output: 杨
CSS:
/* CSS content property */
.element::before {
content: "\006768"; /* 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%A8
MD5:
617ba808a38152089270532e6d83adef
SHA1:
48229032aa944cd057c15453b4e7ed255f779e38
Base64:
5p2o