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