C:
char c = '\uC7C1';
printf("%c\n", c); // Output: 쟁
JavaScript:
const char = '\uC7C1';
console.log(char); // Output: 쟁
Java:
char c = '\uC7C1';
System.out.println(c); // Output: 쟁
JSON:
{"text": "\uC7C1"} // Value: 쟁
Python:
char = '\uC7C1'
print(char) # Output: 쟁
Perl:
my $char = "\x{C7C1}";
print $char; # Output: 쟁
PHP:
$char = "\x{C7C1}";
echo $char; // Output: 쟁
Ruby:
char = "\u{C7C1}"
puts char # Output: 쟁
Rust:
let c = '\u{C7C1}';
println!("{}", c); // Output: 쟁
Go:
char := '\uC7C1'
fmt.Printf("%c\n", char) // Output: 쟁
CSS:
/* CSS content property */
.element::before {
content: "\00C7C1"; /* 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%9F%81
MD5:
b68bb690473d10485cba5d3afccc7179
SHA1:
fafaa10ac4102d1a9ea92f1c0e6355dede2f0e2a
Base64:
7J+B