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