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