C:
char c = '\u51EC';
printf("%c\n", c); // Output: 凬
JavaScript:
const char = '\u51EC';
console.log(char); // Output: 凬
Java:
char c = '\u51EC';
System.out.println(c); // Output: 凬
JSON:
{"text": "\u51EC"} // Value: 凬
Python:
char = '\u51EC'
print(char) # Output: 凬
Perl:
my $char = "\x{51EC}";
print $char; # Output: 凬
PHP:
$char = "\x{51EC}";
echo $char; // Output: 凬
Ruby:
char = "\u{51EC}"
puts char # Output: 凬
Rust:
let c = '\u{51EC}';
println!("{}", c); // Output: 凬
Go:
char := '\u51EC'
fmt.Printf("%c\n", char) // Output: 凬
CSS:
/* CSS content property */
.element::before {
content: "\0051EC"; /* 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%87%AC
MD5:
1f0a44bc7c1ed3339f473db140cf3957
SHA1:
2e9fd6f49a7dfb3a1e68acf14205775d374b39ab
Base64:
5Yes