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