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