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