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