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