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