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