C:
char c = '\uAE26';
printf("%c\n", c); // Output: 긦
JavaScript:
const char = '\uAE26';
console.log(char); // Output: 긦
Java:
char c = '\uAE26';
System.out.println(c); // Output: 긦
JSON:
{"text": "\uAE26"} // Value: 긦
Python:
char = '\uAE26'
print(char) # Output: 긦
Perl:
my $char = "\x{AE26}";
print $char; # Output: 긦
PHP:
$char = "\x{AE26}";
echo $char; // Output: 긦
Ruby:
char = "\u{AE26}"
puts char # Output: 긦
Rust:
let c = '\u{AE26}';
println!("{}", c); // Output: 긦
Go:
char := '\uAE26'
fmt.Printf("%c\n", char) // Output: 긦
CSS:
/* CSS content property */
.element::before {
content: "\00AE26"; /* 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%B8%A6
MD5:
99103dcc18303ee7691c387a223ebf5d
SHA1:
42f609e954a2dcb62412739ddd004407c881818d
Base64:
6rim