C:
char c = '\uCA67';
printf("%c\n", c); // Output: 쩧
JavaScript:
const char = '\uCA67';
console.log(char); // Output: 쩧
Java:
char c = '\uCA67';
System.out.println(c); // Output: 쩧
JSON:
{"text": "\uCA67"} // Value: 쩧
Python:
char = '\uCA67'
print(char) # Output: 쩧
Perl:
my $char = "\x{CA67}";
print $char; # Output: 쩧
PHP:
$char = "\x{CA67}";
echo $char; // Output: 쩧
Ruby:
char = "\u{CA67}"
puts char # Output: 쩧
Rust:
let c = '\u{CA67}';
println!("{}", c); // Output: 쩧
Go:
char := '\uCA67'
fmt.Printf("%c\n", char) // Output: 쩧
CSS:
/* CSS content property */
.element::before {
content: "\00CA67"; /* 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=%EC%A9%A7
MD5:
61c68703df7da3557cdffe5d770d4266
SHA1:
1a926da8db9d9a55e1ba7614f60034cea39e64ef
Base64:
7Kmn