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