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