C:
char c = '\u7A6C';
printf("%c\n", c); // Output: 穬
JavaScript:
const char = '\u7A6C';
console.log(char); // Output: 穬
Java:
char c = '\u7A6C';
System.out.println(c); // Output: 穬
JSON:
{"text": "\u7A6C"} // Value: 穬
Python:
char = '\u7A6C'
print(char) # Output: 穬
Perl:
my $char = "\x{7A6C}";
print $char; # Output: 穬
PHP:
$char = "\x{7A6C}";
echo $char; // Output: 穬
Ruby:
char = "\u{7A6C}"
puts char # Output: 穬
Rust:
let c = '\u{7A6C}';
println!("{}", c); // Output: 穬
Go:
char := '\u7A6C'
fmt.Printf("%c\n", char) // Output: 穬
CSS:
/* CSS content property */
.element::before {
content: "\007A6C"; /* 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=%E7%A9%AC
MD5:
34088cbab8155e605e0fc5f83434eb9f
SHA1:
f56839bffeb4d9226dd7a00c1a13bf4dd964eb4a
Base64:
56ms