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