C:
char c = '\uC482';
printf("%c\n", c); // Output: 쒂
JavaScript:
const char = '\uC482';
console.log(char); // Output: 쒂
Java:
char c = '\uC482';
System.out.println(c); // Output: 쒂
JSON:
{"text": "\uC482"} // Value: 쒂
Python:
char = '\uC482'
print(char) # Output: 쒂
Perl:
my $char = "\x{C482}";
print $char; # Output: 쒂
PHP:
$char = "\x{C482}";
echo $char; // Output: 쒂
Ruby:
char = "\u{C482}"
puts char # Output: 쒂
Rust:
let c = '\u{C482}';
println!("{}", c); // Output: 쒂
Go:
char := '\uC482'
fmt.Printf("%c\n", char) // Output: 쒂
CSS:
/* CSS content property */
.element::before {
content: "\00C482"; /* 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%82
MD5:
04e11fbd0357fad44c896e2ec93db2fb
SHA1:
dd591bee6a481a48bcd72a4f4d714c6fc9a48796
Base64:
7JKC