C:
char c = '\uCB97';
printf("%c\n", c); // Output: 쮗
JavaScript:
const char = '\uCB97';
console.log(char); // Output: 쮗
Java:
char c = '\uCB97';
System.out.println(c); // Output: 쮗
JSON:
{"text": "\uCB97"} // Value: 쮗
Python:
char = '\uCB97'
print(char) # Output: 쮗
Perl:
my $char = "\x{CB97}";
print $char; # Output: 쮗
PHP:
$char = "\x{CB97}";
echo $char; // Output: 쮗
Ruby:
char = "\u{CB97}"
puts char # Output: 쮗
Rust:
let c = '\u{CB97}';
println!("{}", c); // Output: 쮗
Go:
char := '\uCB97'
fmt.Printf("%c\n", char) // Output: 쮗
CSS:
/* CSS content property */
.element::before {
content: "\00CB97"; /* 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%AE%97
MD5:
08cfd71ecd03d400e6b08efd2011f58a
SHA1:
108f5f84887804c7b0ce25aec04ba20fce3eddf8
Base64:
7K6X