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