C:
char c = '\uB766';
printf("%c\n", c); // Output: 띦
JavaScript:
const char = '\uB766';
console.log(char); // Output: 띦
Java:
char c = '\uB766';
System.out.println(c); // Output: 띦
JSON:
{"text": "\uB766"} // Value: 띦
Python:
char = '\uB766'
print(char) # Output: 띦
Perl:
my $char = "\x{B766}";
print $char; # Output: 띦
PHP:
$char = "\x{B766}";
echo $char; // Output: 띦
Ruby:
char = "\u{B766}"
puts char # Output: 띦
Rust:
let c = '\u{B766}';
println!("{}", c); // Output: 띦
Go:
char := '\uB766'
fmt.Printf("%c\n", char) // Output: 띦
CSS:
/* CSS content property */
.element::before {
content: "\00B766"; /* 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%9D%A6
MD5:
2f42da63d427fd81b2d0dd649a08fba5
SHA1:
5d3d47a4cc8edbda2b8c01229d3a016cf71b5f43
Base64:
652m