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