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