C:
char c = '\uAE00';
printf("%c\n", c); // Output: 글
JavaScript:
const char = '\uAE00';
console.log(char); // Output: 글
Java:
char c = '\uAE00';
System.out.println(c); // Output: 글
JSON:
{"text": "\uAE00"} // Value: 글
Python:
char = '\uAE00'
print(char) # Output: 글
Perl:
my $char = "\x{AE00}";
print $char; # Output: 글
PHP:
$char = "\x{AE00}";
echo $char; // Output: 글
Ruby:
char = "\u{AE00}"
puts char # Output: 글
Rust:
let c = '\u{AE00}';
println!("{}", c); // Output: 글
Go:
char := '\uAE00'
fmt.Printf("%c\n", char) // Output: 글
CSS:
/* CSS content property */
.element::before {
content: "\00AE00"; /* 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%B8%80
MD5:
d1249dad4ba054276016f2a5a76d78ed
SHA1:
789ff77e004ec94085c733d49270f268e209ceb8
Base64:
6riA