C:
char c = '\uCB92';
printf("%c\n", c); // Output: 쮒
JavaScript:
const char = '\uCB92';
console.log(char); // Output: 쮒
Java:
char c = '\uCB92';
System.out.println(c); // Output: 쮒
JSON:
{"text": "\uCB92"} // Value: 쮒
Python:
char = '\uCB92'
print(char) # Output: 쮒
Perl:
my $char = "\x{CB92}";
print $char; # Output: 쮒
PHP:
$char = "\x{CB92}";
echo $char; // Output: 쮒
Ruby:
char = "\u{CB92}"
puts char # Output: 쮒
Rust:
let c = '\u{CB92}';
println!("{}", c); // Output: 쮒
Go:
char := '\uCB92'
fmt.Printf("%c\n", char) // Output: 쮒
CSS:
/* CSS content property */
.element::before {
content: "\00CB92"; /* 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%AE%92
MD5:
44cea7fdd56e8f0cad2c3d9c7707bf5a
SHA1:
991203c4d5f56c0148e1eab20fa9059d1718c259
Base64:
7K6S