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