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