C:
char c = '\uB604';
printf("%c\n", c); // Output: 똄
JavaScript:
const char = '\uB604';
console.log(char); // Output: 똄
Java:
char c = '\uB604';
System.out.println(c); // Output: 똄
JSON:
{"text": "\uB604"} // Value: 똄
Python:
char = '\uB604'
print(char) # Output: 똄
Perl:
my $char = "\x{B604}";
print $char; # Output: 똄
PHP:
$char = "\x{B604}";
echo $char; // Output: 똄
Ruby:
char = "\u{B604}"
puts char # Output: 똄
Rust:
let c = '\u{B604}';
println!("{}", c); // Output: 똄
Go:
char := '\uB604'
fmt.Printf("%c\n", char) // Output: 똄
CSS:
/* CSS content property */
.element::before {
content: "\00B604"; /* 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=%EB%98%84
MD5:
5838dcce8d30eefa994a460b7d0185c4
SHA1:
99bda7dac9bb9d6dc2015cea23ec6607758dad6b
Base64:
65iE