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