C:
char c = '\uB76F';
printf("%c\n", c); // Output: 띯
JavaScript:
const char = '\uB76F';
console.log(char); // Output: 띯
Java:
char c = '\uB76F';
System.out.println(c); // Output: 띯
JSON:
{"text": "\uB76F"} // Value: 띯
Python:
char = '\uB76F'
print(char) # Output: 띯
Perl:
my $char = "\x{B76F}";
print $char; # Output: 띯
PHP:
$char = "\x{B76F}";
echo $char; // Output: 띯
Ruby:
char = "\u{B76F}"
puts char # Output: 띯
Rust:
let c = '\u{B76F}';
println!("{}", c); // Output: 띯
Go:
char := '\uB76F'
fmt.Printf("%c\n", char) // Output: 띯
CSS:
/* CSS content property */
.element::before {
content: "\00B76F"; /* 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%AF
MD5:
ae081a0dd27a20ba714231a514da5df9
SHA1:
c4c4b7988e897e86939deef701afa0a49a9fff37
Base64:
652v