C:
char c = '\uC48E';
printf("%c\n", c); // Output: 쒎
JavaScript:
const char = '\uC48E';
console.log(char); // Output: 쒎
Java:
char c = '\uC48E';
System.out.println(c); // Output: 쒎
JSON:
{"text": "\uC48E"} // Value: 쒎
Python:
char = '\uC48E'
print(char) # Output: 쒎
Perl:
my $char = "\x{C48E}";
print $char; # Output: 쒎
PHP:
$char = "\x{C48E}";
echo $char; // Output: 쒎
Ruby:
char = "\u{C48E}"
puts char # Output: 쒎
Rust:
let c = '\u{C48E}';
println!("{}", c); // Output: 쒎
Go:
char := '\uC48E'
fmt.Printf("%c\n", char) // Output: 쒎
CSS:
/* CSS content property */
.element::before {
content: "\00C48E"; /* 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%92%8E
MD5:
526b803210ba1211005d5d83bf9972b4
SHA1:
fe16155486368eeae3d66de236f746589db8393d
Base64:
7JKO