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