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