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