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