C:
char c = '\uCD69';
printf("%c\n", c); // Output: 쵩
JavaScript:
const char = '\uCD69';
console.log(char); // Output: 쵩
Java:
char c = '\uCD69';
System.out.println(c); // Output: 쵩
JSON:
{"text": "\uCD69"} // Value: 쵩
Python:
char = '\uCD69'
print(char) # Output: 쵩
Perl:
my $char = "\x{CD69}";
print $char; # Output: 쵩
PHP:
$char = "\x{CD69}";
echo $char; // Output: 쵩
Ruby:
char = "\u{CD69}"
puts char # Output: 쵩
Rust:
let c = '\u{CD69}';
println!("{}", c); // Output: 쵩
Go:
char := '\uCD69'
fmt.Printf("%c\n", char) // Output: 쵩
CSS:
/* CSS content property */
.element::before {
content: "\00CD69"; /* 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%B5%A9
MD5:
48747723d1241644bc1920f0296a568d
SHA1:
8eced01a7275f80a2f73901c9732ea7404aaaecd
Base64:
7LWp