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