C:
char c = '\uCB04';
printf("%c\n", c); // Output: 쬄
JavaScript:
const char = '\uCB04';
console.log(char); // Output: 쬄
Java:
char c = '\uCB04';
System.out.println(c); // Output: 쬄
JSON:
{"text": "\uCB04"} // Value: 쬄
Python:
char = '\uCB04'
print(char) # Output: 쬄
Perl:
my $char = "\x{CB04}";
print $char; # Output: 쬄
PHP:
$char = "\x{CB04}";
echo $char; // Output: 쬄
Ruby:
char = "\u{CB04}"
puts char # Output: 쬄
Rust:
let c = '\u{CB04}';
println!("{}", c); // Output: 쬄
Go:
char := '\uCB04'
fmt.Printf("%c\n", char) // Output: 쬄
CSS:
/* CSS content property */
.element::before {
content: "\00CB04"; /* 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%AC%84
MD5:
adfe83ee2d4d999916d984f3eecdc154
SHA1:
4371f9fc17d7dd8908035abda642733e4e0c7885
Base64:
7KyE