C:
char c = '\uB568';
printf("%c\n", c); // Output: 땨
JavaScript:
const char = '\uB568';
console.log(char); // Output: 땨
Java:
char c = '\uB568';
System.out.println(c); // Output: 땨
JSON:
{"text": "\uB568"} // Value: 땨
Python:
char = '\uB568'
print(char) # Output: 땨
Perl:
my $char = "\x{B568}";
print $char; # Output: 땨
PHP:
$char = "\x{B568}";
echo $char; // Output: 땨
Ruby:
char = "\u{B568}"
puts char # Output: 땨
Rust:
let c = '\u{B568}';
println!("{}", c); // Output: 땨
Go:
char := '\uB568'
fmt.Printf("%c\n", char) // Output: 땨
CSS:
/* CSS content property */
.element::before {
content: "\00B568"; /* 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%95%A8
MD5:
08ae527056ef16ec681d3721fe57614e
SHA1:
2290185c76dc16260b05eea8ff5025354376b59d
Base64:
65Wo