C:
char c = '\uC222';
printf("%c\n", c); // Output: 숢
JavaScript:
const char = '\uC222';
console.log(char); // Output: 숢
Java:
char c = '\uC222';
System.out.println(c); // Output: 숢
JSON:
{"text": "\uC222"} // Value: 숢
Python:
char = '\uC222'
print(char) # Output: 숢
Perl:
my $char = "\x{C222}";
print $char; # Output: 숢
PHP:
$char = "\x{C222}";
echo $char; // Output: 숢
Ruby:
char = "\u{C222}"
puts char # Output: 숢
Rust:
let c = '\u{C222}';
println!("{}", c); // Output: 숢
Go:
char := '\uC222'
fmt.Printf("%c\n", char) // Output: 숢
CSS:
/* CSS content property */
.element::before {
content: "\00C222"; /* 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%88%A2
MD5:
914c1547a3afc4d03fda8c64eaa68efa
SHA1:
d144159763e053ead0631fbdf9a10db15c920c47
Base64:
7Iii