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