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