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