C:
char c = '\uC6AA';
printf("%c\n", c); // Output: 욪
JavaScript:
const char = '\uC6AA';
console.log(char); // Output: 욪
Java:
char c = '\uC6AA';
System.out.println(c); // Output: 욪
JSON:
{"text": "\uC6AA"} // Value: 욪
Python:
char = '\uC6AA'
print(char) # Output: 욪
Perl:
my $char = "\x{C6AA}";
print $char; # Output: 욪
PHP:
$char = "\x{C6AA}";
echo $char; // Output: 욪
Ruby:
char = "\u{C6AA}"
puts char # Output: 욪
Rust:
let c = '\u{C6AA}';
println!("{}", c); // Output: 욪
Go:
char := '\uC6AA'
fmt.Printf("%c\n", char) // Output: 욪
CSS:
/* CSS content property */
.element::before {
content: "\00C6AA"; /* 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%AA
MD5:
188b104366125e546eb01969f754c7b8
SHA1:
5118955d6b1a07486622bd7bd8276f99ad726c93
Base64:
7Jqq