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